2023-06-22 09:03:42 +01:00
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page
|
|
|
|
# and in the NixOS manual (accessible by running `nixos-help`).
|
2023-09-24 12:09:08 +01:00
|
|
|
{ lib, ... }:
|
2023-09-10 17:07:11 +01:00
|
|
|
let
|
|
|
|
# generate via openvpn --genkey --secret openvpn-laptop.key
|
|
|
|
client-key = "/root/openvpn.key";
|
|
|
|
domain = "vpn.xenia.me.uk";
|
|
|
|
vpn-dev = "tun0";
|
|
|
|
port = 1194;
|
|
|
|
in {
|
2023-09-24 12:05:19 +01:00
|
|
|
users.mutableUsers = false;
|
2023-06-22 09:34:05 +01:00
|
|
|
system.autoUpgrade = {
|
2023-09-24 12:09:08 +01:00
|
|
|
allowReboot = lib.mkForce true;
|
2023-06-22 09:34:05 +01:00
|
|
|
rebootWindow = {
|
|
|
|
lower = "03:00";
|
|
|
|
upper = "05:00";
|
|
|
|
};
|
|
|
|
};
|
2023-09-10 17:07:11 +01:00
|
|
|
networking = {
|
|
|
|
nat = {
|
|
|
|
enable = true;
|
|
|
|
externalInterface = "enp42s0";
|
|
|
|
internalInterfaces = [ vpn-dev ];
|
|
|
|
};
|
|
|
|
firewall = {
|
|
|
|
trustedInterfaces = [ vpn-dev ];
|
|
|
|
allowedUDPPorts = [ port ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
services = {
|
|
|
|
syncthing = let dataDir = "/var/lib/syncthing";
|
|
|
|
in {
|
|
|
|
inherit dataDir;
|
|
|
|
settings.folders = {
|
|
|
|
"Pictures".path = dataDir + "/Pictures";
|
|
|
|
"Zotero".path = dataDir + "/Zotero";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
openvpn = {
|
|
|
|
restartAfterSleep = true;
|
|
|
|
servers.xenia.config = ''
|
|
|
|
dev ${vpn-dev}
|
|
|
|
proto udp
|
|
|
|
ifconfig 10.8.0.1 10.8.0.2
|
|
|
|
secret ${client-key}
|
|
|
|
port ${toString port}
|
|
|
|
|
|
|
|
cipher AES-256-CBC
|
|
|
|
auth-nocache
|
2023-06-28 19:37:23 +01:00
|
|
|
|
2023-09-10 17:07:11 +01:00
|
|
|
comp-lzo
|
|
|
|
keepalive 10 60
|
|
|
|
ping-timer-rem
|
|
|
|
persist-tun
|
|
|
|
persist-key
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
environment.etc."openvpn/client.ovpn" = {
|
|
|
|
text = ''
|
|
|
|
dev tun
|
|
|
|
remote "${domain}"
|
|
|
|
ifconfig 10.8.0.2 10.8.0.1
|
|
|
|
port ${toString port}
|
|
|
|
redirect-gateway def1
|
|
|
|
|
|
|
|
cipher AES-256-CBC
|
|
|
|
auth-nocache
|
|
|
|
|
|
|
|
comp-lzo
|
|
|
|
keepalive 10 60
|
|
|
|
resolv-retry infinite
|
|
|
|
nobind
|
|
|
|
persist-key
|
|
|
|
persist-tun
|
|
|
|
secret [inline]
|
|
|
|
|
|
|
|
'';
|
|
|
|
mode = "600";
|
|
|
|
};
|
|
|
|
system.activationScripts.openvpn-addkey = ''
|
|
|
|
f="/etc/openvpn/client.ovpn"
|
|
|
|
if ! grep -q '<secret>' $f; then
|
|
|
|
echo "appending secret key"
|
|
|
|
echo "<secret>" >> $f
|
|
|
|
cat ${client-key} >> $f
|
|
|
|
echo "</secret>" >> $f
|
|
|
|
fi
|
|
|
|
'';
|
2023-06-22 09:03:42 +01:00
|
|
|
}
|