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:54:53 +01:00
|
|
|
wireless.iwd.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 = {
|
2021-04-06 15:13:58 +02:00
|
|
|
home = {
|
2020-06-10 01:19:20 +02:00
|
|
|
address = [ "10.8.0.2/32" ];
|
2021-08-09 02:10:51 +02:00
|
|
|
privateKeyFile = config.age.secrets.wireguard.path;
|
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";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|