blob: 6142216d9f5a11ccd5c82b390b641724e631f9a1 [file] [log] [blame]
Skyler Grey12792592022-10-31 00:01:54 +00001{
2 pkgs,
3 lib,
4 ...
5}: {
6 config.system.activationScripts.report-changes = ''
7 PATH=$PATH:${lib.makeBinPath (with pkgs; [nvd nix])}
8 nvd diff $(ls -dv /nix/var/nix/profiles/system-*-link | tail -2)
9 '';
10
11 home.home.packages = [pkgs.nvd];
12}