about summary refs log tree commit diff stats
path: root/modules/by-name/sy/system_diff/module.nix
blob: 052ffae21ff0d2fec427c474caac201887cf888e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  config,
  lib,
  pkgs,
  ...
}: let
  cfg = config.soispha.services.systemDiff;
in {
  options.soispha.services.systemDiff = {
    enable = lib.mkEnableOption "nvd run at system activation";
  };

  config = lib.mkIf cfg.enable {
    system.activationScripts.diff = {
      supportsDryActivation = true;
      text = ''
        PATH="${lib.makeBinPath [pkgs.nvd config.nix.package]}:$PATH"

        if [ -e /run/current-system ]; then
          # ${lib.getExe config.nix.package} --extra-experimental-features nix-command store diff-closures /run/current-system "$systemConfig"
          nvd diff $(ls -dv /nix/var/nix/profiles/system-*-link | tail -2)
        fi
      '';
    };
  };
}