dns module

This commit is contained in:
Vivian 2022-09-27 14:05:24 +02:00
parent e3771d84c4
commit 8e0a0ffe71
9 changed files with 115 additions and 10 deletions

View file

@ -5,7 +5,7 @@
inputs.vault-secrets.nixosModules.vault-secrets
# User account definitions
./users
./services
./modules
];
# Clean /tmp on boot.

View file

@ -0,0 +1,8 @@
{ ... }: {
imports = [
./dns.nix
./flood.nix
./unpackerr.nix
./vmagent.nix
];
}

View file

@ -0,0 +1,95 @@
{ config, pkgs, lib, hosts, flat_hosts, ... }:
# DNS Module to set up Unbound DNS with all my hosts in the config
# Used for DNS Servers and my laptop
with lib;
let
inherit (builtins) filter hasAttr attrNames;
domains = attrNames hosts;
ipv4Host = filter (hasAttr "ip") flat_hosts;
ipv6Hosts = filter (hasAttr "ip6") flat_hosts;
localData = { hostname, realm, ip, ... }: ''"${hostname}.${realm}. A ${ip}"'';
local6Data = { hostname, realm, ip6, ... }: ''"${hostname}.${realm}. AAAA ${ip6}"'';
ptrData = { hostname, realm, ip, ... }: ''"${ip} ${hostname}.${realm}"'';
ptr6Data = { hostname, realm, ip6, ... }: ''"${ip6} ${hostname}.${realm}"'';
cfg = config.services.v.dns;
in
{
options.services.v.dns = {
enable = mkEnableOption "v.dns";
openFirewall = mkOption {
type = types.bool;
default = false;
description = ''
Whether to open port 53 in the firwall for unbound dns
'';
};
mode = mkOption {
type = types.strMatching "^(server|laptop)$";
default = "laptop";
description = ''
Whether to configure the DNS in server mode (listen on all interfaces) or laptop mode (just on localhost)
'';
};
};
config = mkIf cfg.enable {
networking.firewall = mkIf (cfg.openFirewall) {
allowedTCPPorts = [ 53 ];
allowedUDPPorts = [ 53 ];
};
services.unbound = {
enable = true;
package = pkgs.v.unbound;
settings = {
server = mkMerge [
{
use-syslog = "yes";
module-config = ''"validator iterator"'';
local-zone = map (localdomain: ''"${localdomain}}." transparent'') domains;
local-data = (map localData ipv4Host) ++ (map local6Data ipv6Hosts);
local-data-ptr = (map ptrData ipv4Host) ++ (map ptr6Data ipv6Hosts);
private-address = [
"127.0.0.0/8"
"10.0.0.0/8"
"::ffff:a00:0/104"
"172.16.0.0/12"
"::ffff:ac10:0/108"
"169.254.0.0/16"
"::ffff:a9fe:0/112"
"192.168.0.0/16"
"::ffff:c0a8:0/112"
"fd00::/8"
"fe80::/10"
];
}
(mkIf (cfg.mode == "server") {
interface-automatic = "yes";
interface = [ "0.0.0.0" "::0" ];
access-control = [
"127.0.0.1/32 allow_snoop"
"::1 allow_snoop"
"10.42.0.0/16 allow"
"127.0.0.0/8 allow"
"192.168.0.0/23 allow"
"192.168.2.0/24 allow"
"::1/128 allow"
];
})
(mkIf (cfg.mode == "laptop") {
interface = [ "127.0.0.1" "::1" ];
access-control = [
"127.0.0.1/32 allow_snoop"
"::1 allow_snoop"
];
})
];
};
};
};
}

View file

@ -1 +0,0 @@
{ config, lib, pkgs, ... }: { imports = [ ./flood.nix ./unpackerr.nix ./vmagent.nix ]; }

View file

@ -73,6 +73,7 @@ let vs = config.vault-secrets.secrets; in
publicKey = "KgqLhmUMX6kyTjRoa/GOCrZOvXNE5HWYuOr/T3v8/VI=";
allowedIPs = [ "10.100.0.5/32" "192.168.0.0/23" "10.10.10.0/24" ];
endpoint = "80.60.83.220:51820";
persistentKeepalive = 25;
}
];
};

View file

@ -1,7 +1,12 @@
{ ... }@a:
{ ... }:
{
services.v.dns = {
enable = true;
openFirewall = false;
mode = "laptop";
};
networking = {
networkmanager.enable = false;
useDHCP = true;
wireless = {
enable = true;
environmentFile = "/var/lib/secrets/wireless.env";
@ -29,10 +34,7 @@
# TODO: Set up DNS on my laptop to prevent slow networking when servers are down
nameservers = [
"10.42.42.15"
"10.42.42.16"
"192.168.0.1"
"1.1.1.1"
"127.0.0.1"
];
firewall.allowedUDPPorts = [ 51820 ];
@ -48,7 +50,7 @@
# Delft
publicKey = "kDIO3BJSYlDwRXc2zt9tR1LqKJzIPrulaRmdiYkg+m0=";
allowedIPs = [ "10.100.0.1" "10.42.42.0/23" ];
endpoint = "0x76.dev:51820";
endpoint = "195.85.167.34:51820";
persistentKeepalive = 25;
}
{
@ -60,7 +62,7 @@
"192.168.1.0/24"
"10.10.10.0/24"
];
endpoint = "xirion.net:51820";
endpoint = "80.60.83.220:51820";
persistentKeepalive = 25;
}
];