Compare commits
No commits in common. "fbceccefe631e8524351d90ffe5c08cf7a6cc3a0" and "36400cc44c9be6dae2940830351a3c99b09e64f1" have entirely different histories.
fbceccefe6
...
36400cc44c
|
@ -9,34 +9,35 @@
|
||||||
enableIPv6 = false;
|
enableIPv6 = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
# Enable systemd-networkd
|
|
||||||
networking = {
|
|
||||||
useDHCP = false;
|
|
||||||
interfaces = {
|
|
||||||
enp0s31f6.useDHCP = true;
|
|
||||||
wlan0.useDHCP = true;
|
|
||||||
};
|
|
||||||
useNetworkd = true;
|
|
||||||
dhcpcd.enable = false;
|
|
||||||
};
|
|
||||||
systemd.services."systemd-networkd-wait-online".enable = false;
|
|
||||||
|
|
||||||
# Static IP for home network
|
|
||||||
systemd.network.networks."24-home" = {
|
|
||||||
name = "wlan0";
|
|
||||||
matchConfig = {
|
|
||||||
Name = "wlan0";
|
|
||||||
SSID = "WiFi-5.0-CE42";
|
|
||||||
};
|
|
||||||
address = [ "192.168.1.131/24" ];
|
|
||||||
gateway = [ "192.168.1.1" ];
|
|
||||||
dns = [ "192.168.1.2" ];
|
|
||||||
networkConfig.DNSSEC = "no";
|
|
||||||
};
|
|
||||||
|
|
||||||
# Enable zeroconf
|
# Enable zeroconf
|
||||||
services.avahi = {
|
services.avahi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
nssmdns = true;
|
nssmdns = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Wireguard setup
|
||||||
|
networking.wg-quick.interfaces = {
|
||||||
|
home = {
|
||||||
|
address = [ "10.8.0.2/32" ];
|
||||||
|
privateKeyFile = config.age.secrets.wireguard.path;
|
||||||
|
dns = [ "10.8.0.1" ];
|
||||||
|
peers = [
|
||||||
|
# zion
|
||||||
|
{
|
||||||
|
publicKey = "GN8lqPBZYOulh6xD4GhkoEWI65HMMCpSxJSH5871YnU=";
|
||||||
|
allowedIPs = [ "0.0.0.0/0" ];
|
||||||
|
endpoint = "coolneng.duckdns.org:1194";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# Enable localhost SSH
|
||||||
|
services.openssh = {
|
||||||
|
enable = true;
|
||||||
|
permitRootLogin = "yes";
|
||||||
|
passwordAuthentication = false;
|
||||||
|
openFirewall = false;
|
||||||
|
startWhenNeeded = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue