configuration.nix/hosts/shared/wireguard.nix

11 lines
232 B
Nix
Raw Normal View History

2024-07-06 00:29:42 +05:30
_: {
nodeconfig.wireguard = {
2024-10-25 22:59:09 +05:30
interface-name = "Homelab";
2024-07-06 00:29:42 +05:30
endpoint = "165.232.180.97:51821";
endpoint-publickey = "NNw/iDMCTq8mpHncrecEh4UlvtINX/UUDtCJf2ToFR4=";
allowed-ips = [
"10.10.10.0/24"
];
};
}