7 lines
267 B
Nix
7 lines
267 B
Nix
{ inputs, ... }: {
|
|
imports = [ inputs.sops-nix.nixosModules.sops ];
|
|
sops.defaultSopsFile = ../../secrets/secret.yaml;
|
|
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
|
sops.age.keyFile = "/var/lib/sops-nix/key.txt";
|
|
sops.age.generateKey = true;
|
|
}
|