10 lines
245 B
Nix
10 lines
245 B
Nix
|
{...}: {
|
||
|
sops = {
|
||
|
defaultSopsFile = ../../../secrets/silver.yaml;
|
||
|
age.sshKeyPaths = ["/persist/etc/ssh/ssh_host_ed25519_key"];
|
||
|
|
||
|
secrets."root-pw" = {neededForUsers = true;};
|
||
|
secrets."user-pw" = {neededForUsers = true;};
|
||
|
};
|
||
|
}
|