blob: 6142216d9f5a11ccd5c82b390b641724e631f9a1 [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];
}