8 lines
233 B
Nix
8 lines
233 B
Nix
{ pkgs, ... }: {
|
|
stdenv.hostPlatform.system.activationScripts.diff = {
|
|
supportsDryActivation = true;
|
|
text = ''
|
|
${pkgs.nvd}/bin/nvd --nix-bin-dir=${pkgs.nix}/bin diff /run/current-system "$systemConfig"
|
|
'';
|
|
};
|
|
}
|