2020-11-01 14:25:17 +00:00
|
|
|
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
{ depot, lib, pkgs, rebuilder, config, ... }:
|
|
|
|
let
|
|
|
|
inherit (depot.ops) secrets;
|
|
|
|
in {
|
|
|
|
boot.initrd.availableKernelModules = [
|
|
|
|
"sd_mod"
|
|
|
|
"ahci"
|
|
|
|
"usb_storage"
|
|
|
|
"usbhid"
|
|
|
|
];
|
|
|
|
boot.kernelParams = [ "mitigations=off" ];
|
|
|
|
|
|
|
|
fileSystems = {
|
|
|
|
"/" = {
|
|
|
|
device = "/dev/disk/by-uuid/fc964ef6-e3d0-4472-bc0e-f96f977ebf11";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
|
|
|
"/boot" = {
|
|
|
|
device = "/dev/disk/by-uuid/AB36-5BE4";
|
|
|
|
fsType = "vfat";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
nix.maxJobs = lib.mkDefault 4;
|
|
|
|
|
|
|
|
# Use the systemd-boot EFI boot loader.
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
|
|
|
# Networking!
|
|
|
|
networking = {
|
|
|
|
hostName = "swann"; # Define your hostname.
|
2021-04-10 20:15:30 +00:00
|
|
|
domain = "int.as205479.net";
|
2020-11-01 14:25:17 +00:00
|
|
|
nameservers = ["8.8.8.8" "8.8.4.4"];
|
|
|
|
useDHCP = false;
|
|
|
|
interfaces = {
|
|
|
|
ens-virginmedia = {
|
|
|
|
useDHCP = true;
|
|
|
|
};
|
|
|
|
ens-general = {
|
|
|
|
ipv4.addresses = [
|
|
|
|
{ address = "192.168.1.1"; prefixLength = 23; }
|
|
|
|
];
|
2021-05-13 10:14:42 +00:00
|
|
|
ipv6.addresses = [
|
|
|
|
{ address = "2a02:88fd:f:d::2"; prefixLength = 64; }
|
|
|
|
];
|
|
|
|
ipv6.routes = [
|
2021-05-15 19:38:46 +00:00
|
|
|
{ address = "2a02:88fd:f:d::"; prefixLength = 64; options.metric = "100"; }
|
2021-05-13 10:14:42 +00:00
|
|
|
];
|
2020-11-01 14:25:17 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2020-11-01 18:25:01 +00:00
|
|
|
my.ip.tailscale = "100.102.224.95";
|
2020-11-01 14:25:17 +00:00
|
|
|
services.udev.extraRules = ''
|
|
|
|
ATTR{address}=="e4:3a:6e:16:07:62", NAME="ens-virginmedia"
|
|
|
|
ATTR{address}=="e4:3a:6e:16:07:67", NAME="ens-general"
|
|
|
|
'';
|
|
|
|
boot.kernel.sysctl = {
|
|
|
|
"net.ipv4.ip_forward" = "1";
|
|
|
|
"net.ipv6.conf.default.forwarding" = "1";
|
|
|
|
"net.ipv6.conf.all.forwarding" = "1";
|
2021-05-12 18:20:45 +00:00
|
|
|
"net.ipv6.conf.ens-virginmedia.accept_ra" = "2";
|
2020-11-01 14:25:17 +00:00
|
|
|
};
|
|
|
|
networking.nat = {
|
|
|
|
enable = true;
|
|
|
|
externalInterface = "ens-virginmedia";
|
|
|
|
internalInterfaces = ["ens-general"];
|
2020-11-04 14:27:19 +00:00
|
|
|
forwardPorts = [
|
|
|
|
{ destination = "192.168.1.40:22"; proto = "tcp"; sourcePort = 10022; }
|
|
|
|
{ destination = "192.168.1.40:41641"; proto = "udp"; sourcePort = 41641; }
|
2020-11-18 01:31:57 +00:00
|
|
|
{ destination = "192.168.1.40:80"; proto = "tcp"; sourcePort = 80; }
|
|
|
|
{ destination = "192.168.1.40:443"; proto = "tcp"; sourcePort = 443; }
|
2021-01-15 03:41:24 +00:00
|
|
|
|
|
|
|
# IPFS
|
|
|
|
{ destination = "192.168.1.40:4001"; proto = "tcp"; sourcePort = 4001; }
|
|
|
|
{ destination = "192.168.1.40:4001"; proto = "udp"; sourcePort = 4001; }
|
2020-11-04 14:27:19 +00:00
|
|
|
];
|
2020-11-01 14:25:17 +00:00
|
|
|
};
|
|
|
|
services.dhcpd4 = {
|
|
|
|
enable = true;
|
|
|
|
interfaces = ["ens-general"];
|
|
|
|
authoritative = true;
|
|
|
|
extraConfig = ''
|
|
|
|
subnet 192.168.1.0 netmask 255.255.255.0 {
|
|
|
|
option subnet-mask 255.255.255.0;
|
|
|
|
option routers 192.168.1.1;
|
2020-11-18 01:50:16 +00:00
|
|
|
option domain-name-servers 192.168.1.1;
|
2020-11-01 14:25:17 +00:00
|
|
|
option domain-name "house.as205479.net";
|
|
|
|
default-lease-time 600;
|
|
|
|
max-lease-time 3600;
|
|
|
|
|
|
|
|
range 192.168.1.100 192.168.1.200;
|
|
|
|
}
|
|
|
|
'';
|
2020-11-04 14:27:19 +00:00
|
|
|
machines = [
|
|
|
|
{
|
|
|
|
hostName = "totoro";
|
|
|
|
ethernetAddress = "40:8d:5c:1f:e8:68";
|
|
|
|
ipAddress = "192.168.1.40";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
hostName = "totoro-pfsense";
|
|
|
|
ethernetAddress = "52:54:00:cf:cd:94";
|
|
|
|
ipAddress = "192.168.1.41";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
hostName = "kvm";
|
|
|
|
ethernetAddress = "00:0d:5d:1b:14:ba";
|
|
|
|
ipAddress = "192.168.1.50";
|
|
|
|
}
|
|
|
|
];
|
2020-11-01 14:25:17 +00:00
|
|
|
};
|
|
|
|
networking.localCommands = ''
|
|
|
|
tc qdisc del dev ens-virginmedia root || true
|
2020-11-04 14:27:19 +00:00
|
|
|
tc qdisc add dev ens-virginmedia root cake bandwidth 20Mbit docsis nat dual-srchost
|
2020-11-01 14:25:17 +00:00
|
|
|
|
|
|
|
ip link add name ifb-virginmedia type ifb || true
|
|
|
|
tc qdisc del dev ens-virginmedia ingress || true
|
|
|
|
tc qdisc add dev ens-virginmedia handle ffff: ingress
|
|
|
|
tc qdisc del dev ifb-virginmedia root || true
|
2020-11-04 14:27:19 +00:00
|
|
|
tc qdisc add dev ifb-virginmedia root cake bandwidth 450Mbit besteffort docsis nat wash dual-dsthost
|
2020-11-01 14:25:17 +00:00
|
|
|
ip link set dev ifb-virginmedia up
|
|
|
|
tc filter add dev ens-virginmedia parent ffff: matchall action mirred egress redirect dev ifb-virginmedia
|
|
|
|
'';
|
|
|
|
|
2020-11-04 21:53:14 +00:00
|
|
|
services.unifi = {
|
|
|
|
enable = true;
|
|
|
|
openPorts = false;
|
2021-05-15 19:33:13 +00:00
|
|
|
unifiPackage = depot.pkgs.unifi;
|
2020-11-04 21:53:14 +00:00
|
|
|
};
|
2020-11-06 05:02:05 +00:00
|
|
|
services.prometheus.exporters.unifi-poller = {
|
|
|
|
enable = true;
|
|
|
|
controllers = [{
|
|
|
|
url = "https://localhost:8443";
|
|
|
|
verify_ssl = false;
|
|
|
|
user = "unifipoller";
|
|
|
|
pass = pkgs.writeTextFile { name = "unifipoller-password"; text = "unifipoller"; };
|
|
|
|
}];
|
|
|
|
};
|
2020-11-04 21:53:14 +00:00
|
|
|
|
|
|
|
networking.firewall = {
|
|
|
|
interfaces.ens-general = {
|
|
|
|
allowedTCPPorts = [
|
|
|
|
8080 6789 # Unifi
|
2020-11-18 01:49:44 +00:00
|
|
|
53 # DNS
|
2020-11-04 21:53:14 +00:00
|
|
|
];
|
|
|
|
allowedUDPPorts = [
|
|
|
|
3478 10001 # Unifi
|
2020-11-18 01:49:44 +00:00
|
|
|
53 # DNS
|
2020-11-04 21:53:14 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-11-18 01:49:44 +00:00
|
|
|
services.ddclient = {
|
|
|
|
enable = false;
|
|
|
|
protocol = "cloudflare";
|
|
|
|
domains = ["home.lukegb.com"];
|
|
|
|
zone = "lukegb.com";
|
|
|
|
password = secrets.cloudflareCredentials.token;
|
|
|
|
use = "if";
|
|
|
|
extraConfig = ''
|
|
|
|
if=ens-virginmedia
|
|
|
|
daemon=0
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
systemd.services.ddclient.serviceConfig.ExecStart = let
|
|
|
|
ddclient = pkgs.perlPackages.buildPerlPackage rec {
|
|
|
|
pname = "ddclient";
|
|
|
|
version = "3.9.1";
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "ddclient";
|
|
|
|
repo = "ddclient";
|
|
|
|
rev = "11a583b003920f8e15591813598b70061d1a4654";
|
|
|
|
sha256 = "sha256:1xz09vkii3mc2jmfwx9is07i06iiryv51571vdnl4m5mdnvsmlwb";
|
|
|
|
};
|
|
|
|
outputs = [ "out" ];
|
|
|
|
doCheck = false;
|
|
|
|
buildInputs = with pkgs.perlPackages; [ IOSocketSSL DigestSHA1 DataValidateIP JSONPP ];
|
|
|
|
nativeBuildInputs = with pkgs; [ autoreconfHook makeWrapper ];
|
|
|
|
preConfigure = ''
|
|
|
|
touch Makefile.PL
|
|
|
|
'';
|
|
|
|
postInstall = ''
|
|
|
|
patchShebangs $out/bin/ddclient
|
|
|
|
wrapProgram $out/bin/ddclient \
|
|
|
|
--suffix PATH : ${lib.makeBinPath (with pkgs; [ pkgs.iproute ])} \
|
|
|
|
--prefix PERL5LIB : $PERL5LIB
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
RuntimeDirectory = "ddclient";
|
|
|
|
in lib.mkForce "${lib.getBin ddclient}/bin/ddclient -file /run/${RuntimeDirectory}/ddclient.conf";
|
|
|
|
|
2020-11-01 14:25:17 +00:00
|
|
|
environment.systemPackages = with pkgs; [];
|
|
|
|
|
2020-11-18 01:49:44 +00:00
|
|
|
services.coredns = {
|
|
|
|
enable = true;
|
|
|
|
config = ''
|
|
|
|
.:53 {
|
|
|
|
bind 192.168.1.1 127.0.0.53
|
|
|
|
acl {
|
|
|
|
allow net 192.168.0.0/16 172.16.0.0/12 10.0.0.0/8 127.0.0.0/8
|
|
|
|
block
|
|
|
|
}
|
2021-05-21 15:22:34 +00:00
|
|
|
hosts {
|
|
|
|
2a02:26f0:5700:3b1::2ab3 www.nhs.uk
|
|
|
|
fallthrough
|
|
|
|
}
|
2020-11-18 01:49:44 +00:00
|
|
|
loadbalance
|
|
|
|
forward . tls://8.8.8.8 tls://8.8.4.4 {
|
|
|
|
tls_servername dns.google
|
|
|
|
}
|
|
|
|
cache {
|
|
|
|
success 4096
|
|
|
|
denial 1024
|
|
|
|
prefetch 512
|
|
|
|
}
|
|
|
|
prometheus :9153
|
|
|
|
errors
|
|
|
|
log
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
2020-11-18 02:02:23 +00:00
|
|
|
my.prometheus.additionalExporterPorts.coredns = 9153;
|
2020-11-18 01:49:44 +00:00
|
|
|
networking.resolvconf.extraConfig = ''
|
|
|
|
name_servers='127.0.0.53'
|
|
|
|
'';
|
|
|
|
|
2020-12-29 18:57:18 +00:00
|
|
|
services.prometheus.exporters.smokeping = {
|
|
|
|
enable = true;
|
|
|
|
hosts = [
|
|
|
|
"8.8.8.8" # Google Public DNS
|
2021-05-13 10:14:42 +00:00
|
|
|
"2001:4860:4860::8888"
|
2020-12-29 18:57:18 +00:00
|
|
|
"youtube.com" "ads.google.com" "google.com"
|
|
|
|
|
|
|
|
"1.1.1.1" # Cloudflare DNS
|
2021-05-13 10:14:42 +00:00
|
|
|
"2606:4700:4700::1111"
|
2020-12-29 18:57:18 +00:00
|
|
|
|
|
|
|
"twitter.com"
|
|
|
|
|
|
|
|
"store.steampowered.com"
|
|
|
|
"api.steampowered.com"
|
|
|
|
|
|
|
|
"prod.euw1.lol.riotgames.com" # League of Legends EUW
|
|
|
|
|
|
|
|
"eu.battle.net"
|
|
|
|
"185.60.112.157" "185.60.112.158" # Diablo 3/HotS/Hearthstone
|
|
|
|
"185.60.114.159" # Overwatch
|
2021-05-13 16:33:40 +00:00
|
|
|
|
|
|
|
# BFOB TS
|
|
|
|
"2a01:a500:85:3::2"
|
|
|
|
"37.9.61.53"
|
2020-12-29 18:57:18 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2021-05-12 18:12:41 +00:00
|
|
|
# This is cursed.
|
|
|
|
services.ndppd = {
|
|
|
|
enable = true;
|
2021-05-13 10:14:42 +00:00
|
|
|
proxies.ens-virginmedia = {
|
|
|
|
router = false;
|
|
|
|
rules."2a02:88fd:f:d::/64" = {
|
|
|
|
method = "iface";
|
|
|
|
interface = "ens-general";
|
|
|
|
};
|
2021-05-12 18:12:41 +00:00
|
|
|
};
|
|
|
|
};
|
2021-05-13 10:14:42 +00:00
|
|
|
networking.dhcpcd.extraConfig = ''
|
|
|
|
noipv6rs
|
|
|
|
|
|
|
|
interface ens-virginmedia
|
|
|
|
ipv6rs
|
|
|
|
iaid 1
|
|
|
|
ia_na 2
|
|
|
|
ia_pd 3 ens-general/1/64
|
|
|
|
'';
|
2021-05-12 18:12:41 +00:00
|
|
|
services.radvd = {
|
|
|
|
enable = true;
|
|
|
|
config = ''
|
2021-05-12 18:19:09 +00:00
|
|
|
interface ens-general {
|
2021-05-12 18:12:41 +00:00
|
|
|
AdvSendAdvert on;
|
|
|
|
MaxRtrAdvInterval 60;
|
|
|
|
AdvDefaultLifetime 180;
|
|
|
|
prefix 2a02:88fd:f:d::/64 {
|
|
|
|
AdvValidLifetime 7200;
|
|
|
|
AdvPreferredLifetime 3600;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2020-11-01 14:25:17 +00:00
|
|
|
system.stateVersion = "21.03";
|
|
|
|
}
|