configuration.nix/hosts/rico2/wireguard.nix

36 lines
971 B
Nix
Raw Normal View History

2024-06-30 17:54:04 +05:30
{ config, ... }: {
2024-06-30 18:45:27 +05:30
sops.secrets."wireguard/psk/rico2" = {
mode = "400";
owner = config.users.users.root.name;
group = config.users.users.root.group;
};
2024-06-30 17:54:04 +05:30
networking.firewall.trustedInterfaces = [ "wg0" ];
networking.wireguard = {
enable = true;
interfaces = {
wg0 = {
ips = [
"10.10.10.12/24"
"fd7c:585c:c4ae::12/64"
];
listenPort = 51822;
privateKeyFile = "/persist/secrets/wireguard/private.key";
generatePrivateKeyFile = true;
peers = [
{
name = "Proxy";
endpoint = "165.232.180.97:51821";
publicKey = "NNw/iDMCTq8mpHncrecEh4UlvtINX/UUDtCJf2ToFR4=";
presharedKeyFile = config.sops.secrets."wireguard/psk/rico2".path;
persistentKeepalive = 20;
allowedIPs = [
"10.10.10.0/24"
"fd7c:585c:c4ae::0/64"
];
}
];
};
};
};
}