ark/hosts/wolumonde/modules/wireguard.nix
2023-05-05 03:30:46 +03:00

11 lines
296 B
Nix

{config, ...}: {
networking.wireguard.enable = true;
networking.wireguard.interfaces."wg0" = {
listenPort = 51820;
privateKeyFile = config.age.secrets.wgWolumondeKey.path;
peers = [{
publicKey = import ./wgTkarontoKey.pub;
allowedIPs = ["10.99.0.2/32"];
}];
};
}