summaryrefslogtreecommitdiff
path: root/parts/modules/nixos/base/upgrade-diff.nix
blob: 68be9afe7c6d4b6dda15ee4a8c0857d014bfd449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
  config,
  pkgs,
  ...
}: {
  system.activationScripts."upgrade-diff" = {
    supportsDryActivation = true;
    text = ''
      ${pkgs.nvd}/bin/nvd --nix-bin-dir=${config.nix.package}/bin diff /run/current-system "$systemConfig"
    '';
  };
}