nix-config/hosts/toaster/secrets.nix

21 lines
493 B
Nix
Raw Normal View History

2024-12-31 13:52:57 +00:00
{ 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;
};
2025-01-11 02:34:54 +01:00
"wg/0xa-mgmt" = {
2024-12-31 13:52:57 +00:00
owner = config.users.users.systemd-network.name;
};
};
}