240 lines
5.4 KiB
Nix
240 lines
5.4 KiB
Nix
{ lib, config, pkgs, ... }:
|
|
|
|
with lib;
|
|
let
|
|
hostname = "nostromo";
|
|
host-internal-ip = "10.0.0.1";
|
|
|
|
in {
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
dnsproxy
|
|
google-photos-uploader
|
|
libguestfs-with-appliance
|
|
libvirt
|
|
powerdns
|
|
virtmanager
|
|
];
|
|
|
|
boot.kernelModules = [ "kvm-amd" ];
|
|
|
|
boot.loader.grub.enable = true;
|
|
boot.loader.grub.version = 2;
|
|
boot.loader.grub.device = "/dev/sda";
|
|
|
|
hardware.bluetooth.enable = false;
|
|
|
|
imports = [ ../defaults.nix ../hardware-configuration.nix ];
|
|
|
|
fudo.common = {
|
|
profile = "server";
|
|
site = "seattle";
|
|
};
|
|
|
|
fudo.local-network = {
|
|
enable = true;
|
|
# See fudo/sites/seattle.nix for general settings
|
|
dns-servers = [ host-internal-ip ];
|
|
gateway = host-internal-ip;
|
|
dhcp-interfaces = [ "intif0" ];
|
|
dns-serve-ips = [ host-internal-ip "127.0.0.1" "127.0.1.1" ];
|
|
# Using a pihole running in docker, see below
|
|
recursive-resolver = "${host-internal-ip} port 5353";
|
|
server-ip = host-internal-ip;
|
|
};
|
|
|
|
fudo.slynk = {
|
|
# NOTE: for now, had to do: XDG_RUNTIME_DIR=/run/user/$UID systemctl start --user slynk
|
|
enable = true;
|
|
};
|
|
|
|
# systemd.network.networks.eno2 = {
|
|
# dhcpV6Config = {
|
|
# IPv6PrefixDelegation = "dhcpv6";
|
|
# PrefixDelegationHint = 60;
|
|
# };
|
|
# };
|
|
|
|
systemd.network.networks.eno2 = {
|
|
extraConfig = {
|
|
IPv6AcceptRA = true;
|
|
IPv6PrefixDelegation = "dhcpv6";
|
|
};
|
|
};
|
|
|
|
networking = {
|
|
hostName = hostname;
|
|
|
|
nameservers = [ host-internal-ip ];
|
|
|
|
dhcpcd.extraConfig = ''
|
|
interface eno2
|
|
ia_na 1
|
|
ia_pd 2 eno2/0
|
|
'';
|
|
|
|
# Create a bridge for VMs to use
|
|
macvlans = {
|
|
intif0 = {
|
|
interface = "eno1";
|
|
mode = "bridge";
|
|
};
|
|
};
|
|
|
|
interfaces = {
|
|
eno1.useDHCP = false;
|
|
eno3.useDHCP = false;
|
|
eno4.useDHCP = false;
|
|
enp33s0f0.useDHCP = false;
|
|
enp33s0f1.useDHCP = false;
|
|
enp9s0f0.useDHCP = false;
|
|
enp9s0f1.useDHCP = false;
|
|
|
|
eno2 = { useDHCP = true; };
|
|
|
|
intif0 = {
|
|
useDHCP = false;
|
|
macAddress = "46:54:76:06:f1:10";
|
|
ipv4.addresses = [
|
|
{
|
|
address = host-internal-ip;
|
|
prefixLength = 22;
|
|
}
|
|
{
|
|
address = "10.0.10.2";
|
|
prefixLength = 24;
|
|
}
|
|
];
|
|
};
|
|
};
|
|
|
|
nat = {
|
|
enable = true;
|
|
externalInterface = "eno2";
|
|
internalInterfaces = [ "intif0" ];
|
|
};
|
|
};
|
|
|
|
users = {
|
|
users = { fudo-client = { isSystemUser = true; }; };
|
|
|
|
groups = {
|
|
backplane-powerdns = { members = [ "backplane-powerdns" ]; };
|
|
backplane-dns = { members = [ "backplane-dns" ]; };
|
|
};
|
|
};
|
|
|
|
fudo = {
|
|
client.dns = {
|
|
enable = true;
|
|
ipv4 = true;
|
|
ipv6 = true;
|
|
user = "fudo-client";
|
|
external-interface = "eno2";
|
|
password-file = "/srv/client/secure/client.passwd";
|
|
};
|
|
|
|
secure-dns-proxy = {
|
|
enable = true;
|
|
port = 3535;
|
|
upstream-dns = [
|
|
"https://cloudflare-dns.com/dns-query"
|
|
# "https://dns.adguard.com/dns-query"
|
|
];
|
|
bootstrap-dns = "1.1.1.1";
|
|
};
|
|
|
|
netinfo-email = {
|
|
enable = true;
|
|
env-file = "/srv/netinfo/secure/env";
|
|
};
|
|
};
|
|
|
|
virtualisation = {
|
|
docker = {
|
|
enable = true;
|
|
autoPrune.enable = true;
|
|
enableOnBoot = true;
|
|
};
|
|
|
|
libvirtd = {
|
|
enable = true;
|
|
qemuPackage = pkgs.qemu_kvm;
|
|
onShutdown = "shutdown";
|
|
};
|
|
};
|
|
|
|
docker-containers = {
|
|
pihole = {
|
|
image = "pihole/pihole:4.3.2-1";
|
|
ports = [ "5353:53/tcp" "5353:53/udp" "3080:80/tcp" ];
|
|
environment = {
|
|
ServerIP = host-internal-ip;
|
|
VIRTUAL_HOST = "dns-hole.sea.fudo.org";
|
|
DNS1 = "1.1.1.1";
|
|
DNS2 = "8.8.8.8";
|
|
};
|
|
volumes = [
|
|
"/srv/pihole/etc-pihole/:/etc/pihole/"
|
|
"/srv/pihole/etc-dnsmasq.d/:/etc/dnsmasq.d/"
|
|
];
|
|
# TODO: DNS-over-HTTPS via cloudflared
|
|
# extraDockerOptions = [
|
|
# "--dns=1.1.1.1"
|
|
# ];
|
|
};
|
|
};
|
|
|
|
fudo.ipfs = {
|
|
enable = true;
|
|
users = [ "niten" ];
|
|
api-address = "/ip4/${host-internal-ip}/tcp/5001";
|
|
};
|
|
|
|
security.acme.certs."sea-camera.fudo.link".email = "niten@fudo.org";
|
|
security.acme.certs."sea-camera-od.fudo.link".email = "niten@fudo.org";
|
|
|
|
services = {
|
|
nginx = {
|
|
enable = true;
|
|
recommendedGzipSettings = true;
|
|
recommendedOptimisation = true;
|
|
recommendedTlsSettings = true;
|
|
recommendedProxySettings = true;
|
|
|
|
virtualHosts = {
|
|
"sea-camera.fudo.link" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
locations."/" = {
|
|
proxyPass = "http://panopticon.sea.fudo.org/";
|
|
extraConfig = ''
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
'';
|
|
};
|
|
};
|
|
|
|
"sea-camera-od.fudo.link" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
locations."/" = {
|
|
proxyPass = "http://panopticon-od.sea.fudo.org/";
|
|
extraConfig = ''
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
'';
|
|
};
|
|
};
|
|
|
|
"pihole.sea.fudo.org" = {
|
|
serverAliases = [ "dns-hole.sea.fudo.org" "hole.sea.fudo.org" ];
|
|
locations."/" = { proxyPass = "http://127.0.0.1:3000"; };
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|