carbon: +nix-diff

This commit is contained in:
Primrose 2024-08-02 12:26:19 +02:00
parent 7dbd39f87c
commit 94ac76e09d
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
4 changed files with 11 additions and 15 deletions

View file

@ -25,20 +25,6 @@
};
};
devShells.default = pkgs.mkShellNoCC {
shellHook = config.pre-commit.installationScript;
packages =
let
nix-diff = pkgs.writeShellApplication {
name = "nix-diff";
runtimeInputs = [
pkgs.nix-output-monitor
pkgs.nvd
];
text = builtins.readFile ./nix-diff.sh;
};
in
[ nix-diff ];
};
devShells.default = pkgs.mkShellNoCC { shellHook = config.pre-commit.installationScript; };
};
}