Compare commits

...

2 commits

3 changed files with 16 additions and 0 deletions

View file

@ -2,6 +2,7 @@
{ {
config = { config = {
home.packages = with pkgs; [ home.packages = with pkgs; [
nvd
nix-diff nix-diff
nix-tree nix-tree
nix-output-monitor nix-output-monitor

View file

@ -8,6 +8,7 @@
./ccc ./ccc
./common.nix ./common.nix
./desktop.nix ./desktop.nix
./diff
./gaming ./gaming
./geoffrey.nix ./geoffrey.nix
./printing ./printing

14
os/diff/default.nix Normal file
View file

@ -0,0 +1,14 @@
{ pkgs, lib, config, ... }:
{
config = {
system.activationScripts.diff = {
supportsDryActivation = true;
text = ''
if [ -h /run/current-system ]
then
${pkgs.nvd}/bin/nvd --nix-bin-dir=${pkgs.nix}/bin diff /run/current-system "$systemConfig"
fi
'';
};
};
}