blob: ab4d335bf3224382429b73cc6b9a865211f33678 [file] [log] [blame]
{ pkgs
, lib
, ...
}: {
config.system.activationScripts.report-changes = ''
PATH=$PATH:${lib.makeBinPath (with pkgs; [nvd nix])}
nvd diff $(ls -dv /nix/var/nix/profiles/system-*-link | tail -2)
'';
home.home.packages = [ pkgs.nvd ];
}