Add Sops... for secrets

This commit is contained in:
2023-03-15 22:16:54 -04:00
parent 7ae845c6fb
commit 805e9ef46f

View File

@@ -50,11 +50,12 @@ DOC
}; };
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
packages = [ packages = with pkgs; [
poetry2nix.packages.${system}.poetry poetry2nix.packages.${system}.poetry
(mkPoetryEnv { (mkPoetryEnv {
projectDir = self; projectDir = self;
}) })
sops
]; ];
}; };
} }