2024-04-19 18:22:40 +01:00
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
../../modules/rpi/rpi4.nix
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
config = {
|
|
|
|
|
system.stateVersion = "23.11";
|
|
|
|
|
|
|
|
|
|
networking.hostName = "li";
|
|
|
|
|
networking.domain = "pop.ts.hillion.co.uk";
|
|
|
|
|
|
2024-04-27 12:45:03 +01:00
|
|
|
|
custom.defaults = true;
|
|
|
|
|
|
2024-04-22 20:49:43 +01:00
|
|
|
|
## Custom Services
|
|
|
|
|
custom.locations.autoServe = true;
|
|
|
|
|
|
2024-04-19 18:22:40 +01:00
|
|
|
|
# Networking
|
|
|
|
|
## Tailscale
|
|
|
|
|
age.secrets."tailscale/li.pop.ts.hillion.co.uk".file = ../../secrets/tailscale/li.pop.ts.hillion.co.uk.age;
|
|
|
|
|
services.tailscale = {
|
|
|
|
|
enable = true;
|
|
|
|
|
authKeyFile = config.age.secrets."tailscale/li.pop.ts.hillion.co.uk".path;
|
|
|
|
|
useRoutingFeatures = "server";
|
|
|
|
|
extraUpFlags = [ "--advertise-routes" "192.168.1.0/24" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
## Enable ZRAM to make up for 2GB of RAM
|
|
|
|
|
zramSwap = {
|
|
|
|
|
enable = true;
|
|
|
|
|
memoryPercent = 200;
|
|
|
|
|
algorithm = "zstd";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
## Run a persistent iperf3 server
|
|
|
|
|
services.iperf3.enable = true;
|
|
|
|
|
services.iperf3.openFirewall = true;
|
2024-04-22 20:49:43 +01:00
|
|
|
|
|
|
|
|
|
networking.firewall.interfaces = {
|
|
|
|
|
"end0" = {
|
|
|
|
|
allowedTCPPorts = [
|
|
|
|
|
7654 # Tang
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
};
|
2024-04-19 18:22:40 +01:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|