installed nix-inspect in dev shell

This commit is contained in:
Leyla Becker 2024-11-11 20:18:24 -06:00
parent 5ba3a082e6
commit 47c8a79178
2 changed files with 10 additions and 1 deletions

View file

@ -25,6 +25,9 @@
## Updating Secrets
`sops -c sops secrets/secrets_file_here.yaml`
## Inspecting a configuration
`nix-inspect -p .`
# Notes:
## Research topics

View file

@ -92,7 +92,13 @@
devShells = forEachPkgs (pkgs: {
default = pkgs.mkShell {
packages = with pkgs; [git sops alejandra nixos-anywhere];
packages = with pkgs; [
git
sops
alejandra
nix-inspect
nixos-anywhere
];
SOPS_AGE_KEY_DIRECTORY = import ./const/sops_age_key_directory.nix;