2020-04-18 21:04:14 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2020-05-14 02:09:23 +02:00
|
|
|
# Set hostname, hostid and enable WiFi
|
2020-04-18 21:04:14 +02:00
|
|
|
networking = {
|
|
|
|
hostName = "panacea";
|
2020-05-08 21:53:52 +02:00
|
|
|
hostId = "8feb0bb8";
|
2020-12-20 20:14:00 +01:00
|
|
|
wireless.enable = true;
|
2020-07-17 12:07:57 +02:00
|
|
|
enableIPv6 = false;
|
2020-04-18 21:04:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# Enable zeroconf
|
|
|
|
services.avahi = {
|
|
|
|
enable = true;
|
|
|
|
nssmdns = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Wireguard setup
|
2020-05-11 06:39:22 +02:00
|
|
|
networking.wg-quick.interfaces = {
|
2020-04-18 21:04:14 +02:00
|
|
|
wg0 = {
|
2020-06-10 01:19:20 +02:00
|
|
|
address = [ "10.8.0.2/32" ];
|
2020-04-18 21:04:14 +02:00
|
|
|
privateKeyFile = "/home/coolneng/.wg/keys/privatekey";
|
2020-12-01 11:05:38 +01:00
|
|
|
dns = [ "10.8.0.1" ];
|
2020-04-18 21:04:14 +02:00
|
|
|
peers = [
|
|
|
|
# zion
|
|
|
|
{
|
|
|
|
publicKey = "GN8lqPBZYOulh6xD4GhkoEWI65HMMCpSxJSH5871YnU=";
|
|
|
|
allowedIPs = [ "0.0.0.0/0" ];
|
|
|
|
endpoint = "coolneng.duckdns.org:1194";
|
|
|
|
persistentKeepalive = 25;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-05-14 02:09:23 +02:00
|
|
|
# Enable localhost SSH
|
|
|
|
services.openssh = {
|
|
|
|
enable = true;
|
|
|
|
permitRootLogin = "yes";
|
|
|
|
passwordAuthentication = false;
|
|
|
|
openFirewall = false;
|
|
|
|
startWhenNeeded = true;
|
|
|
|
};
|
2020-04-18 21:04:14 +02:00
|
|
|
}
|