mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
10 lines
241 B
Nix
10 lines
241 B
Nix
{ pkgs, ... }:
|
|
{
|
|
system.activationScripts.diff = {
|
|
supportsDryActivation = true;
|
|
text = ''
|
|
${pkgs.nvd}/bin/nvd --color=always --nix-bin-dir=${pkgs.nix}/bin diff \
|
|
/run/current-system "$systemConfig"
|
|
'';
|
|
};
|
|
}
|