From 47c8a79178bb08260c66782fb81eba8f03b0d1a9 Mon Sep 17 00:00:00 2001 From: Leyla Becker Date: Mon, 11 Nov 2024 20:18:24 -0600 Subject: [PATCH] installed nix-inspect in dev shell --- README.md | 3 +++ flake.nix | 8 +++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index afd4f90..d04a328 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,9 @@ ## Updating Secrets `sops -c sops secrets/secrets_file_here.yaml` +## Inspecting a configuration +`nix-inspect -p .` + # Notes: ## Research topics diff --git a/flake.nix b/flake.nix index 7d24c4c..4485df3 100644 --- a/flake.nix +++ b/flake.nix @@ -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;