20 lines
491 B
Nix
20 lines
491 B
Nix
{ config, ... }:
|
|
{
|
|
sops.defaultSopsFile = ../../secrets/toaster/secrets.yaml;
|
|
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
|
|
|
sops.secrets = {
|
|
"wg/zw" = {
|
|
owner = config.users.users.systemd-network.name;
|
|
};
|
|
"wg/dvb" = {
|
|
owner = config.users.users.systemd-network.name;
|
|
};
|
|
"wg/mullvad" = {
|
|
owner = config.users.users.systemd-network.name;
|
|
};
|
|
"wg/oxalab" = {
|
|
owner = config.users.users.systemd-network.name;
|
|
};
|
|
};
|
|
}
|