add sops binary

This commit is contained in:
2024-08-08 14:10:41 +05:30
parent 42a23950d6
commit fb49ef1d80

View File

@ -1,6 +1,7 @@
{
inputs,
config,
pkgs,
...
}: let
isEd25519 = k: k.type == "ed25519";
@ -14,4 +15,6 @@ in {
keyFile = "/var/lib/sops-nix/key.txt";
generateKey = true;
};
environment.systemPackages = with pkgs; [sops];
}