40 lines
922 B
Nix
Executable File
40 lines
922 B
Nix
Executable File
{ config, pkgs, ... }:
|
|
{
|
|
networking = {
|
|
hostName = "Marisa";
|
|
firewall = {
|
|
allowedTCPPorts = [ 22 80 6060 5001 8800 8888 4444 4445 ];
|
|
allowedUDPPorts = [ 17840 ];
|
|
};
|
|
wireless = {
|
|
enable = false;
|
|
iwd.enable = true;
|
|
};
|
|
interfaces = {
|
|
wlan0 = {
|
|
useDHCP = false;
|
|
ipv4.addresses = [{
|
|
prefixLength = 24;
|
|
address = "192.168.0.159";
|
|
}];
|
|
};
|
|
};
|
|
wireguard.interfaces.wg0 = {
|
|
ips = [ "10.55.0.2/24" ];
|
|
listenPort = 17840;
|
|
privateKeyFile = "/var/wg";
|
|
peers = [
|
|
{
|
|
#Oracle VM1
|
|
publicKey = "z0Y2VNEWcyVQVSqRHiwmiJ5/0MgSPM+HZfEcwIccSxM=";
|
|
allowedIPs = [ "10.55.0.0/24" ];
|
|
endpoint = "weirdnatto.in:17840";
|
|
persistentKeepalive = 25;
|
|
}
|
|
];
|
|
};
|
|
defaultGateway = "192.168.0.1";
|
|
nameservers = [ "1.1.1.1" "8.8.8.8" ];
|
|
};
|
|
}
|