Add sops-nix

This commit is contained in:
muon 2025-01-17 20:46:50 +00:00
parent 49e796631b
commit 967becfdc9
10 changed files with 100 additions and 94 deletions

13
shell.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs ? import <nixpkgs> { }, ... }: {
default = pkgs.mkShell {
NIX_CONFIG =
"extra-experimental-features = nix-command flakes ca-derivations";
nativeBuildInputs = with pkgs; [
nix
git
sops
age
];
};
}