15 lines
211 B
Nix
15 lines
211 B
Nix
{
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [ inputs.sops-nix.nixosModules.sops ];
|
|
|
|
config = {
|
|
sops.defaultSopsFile = ../secrets/solis.yaml;
|
|
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
|
};
|
|
}
|
|
|
|
|