configuration.nix/hosts/skipper/wireguard.nix

22 lines
419 B
Nix
Raw Normal View History

{
config,
secrets,
...
}: let
inherit (secrets.wireguard_config) peers;
in {
networking.wireguard = {
enable = true;
interfaces = {
wg0 = {
2023-10-10 22:19:47 +05:30
inherit (peers."${config.networking.hostName}") ips listenPort mtu;
privateKeyFile = "/etc/wireguard/private.key";
generatePrivateKeyFile = true;
peers = with peers; [
Proxy.peer
];
};
};
};
}