mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
435 lines
18 KiB
Nix
435 lines
18 KiB
Nix
{ config, lib, tf, pkgs, meta, ... }: with lib; {
|
|
options = let
|
|
nixos = config;
|
|
in {
|
|
domains = mkOption {
|
|
default = {};
|
|
type = with types; attrsOf (submodule ({ name, config, ... }: {
|
|
options = {
|
|
host = mkOption {
|
|
type = nullOr str;
|
|
default = nixos.networking.hostName;
|
|
};
|
|
owner = mkOption {
|
|
type = str;
|
|
default = "nginx";
|
|
};
|
|
group = mkOption {
|
|
type = str;
|
|
default = "domain-auth";
|
|
};
|
|
network = mkOption {
|
|
type = unspecified;
|
|
default = "internet";
|
|
};
|
|
type = mkOption {
|
|
type = types.enum [
|
|
"ipv4"
|
|
"ipv6"
|
|
"both"
|
|
"cname"
|
|
];
|
|
};
|
|
create_cert = mkOption {
|
|
type = bool;
|
|
default = true;
|
|
};
|
|
domain = mkOption {
|
|
type = nullOr str;
|
|
default = "${nixos.networking.hostName}${if config.prefix != null then ".${config.prefix}" else ""}";
|
|
};
|
|
cname = mkOption {
|
|
type = nullOr str;
|
|
default = "${config.domain}.${config.zone}";
|
|
};
|
|
prefix = mkOption {
|
|
type = nullOr str;
|
|
default = null;
|
|
};
|
|
zone = mkOption {
|
|
type = nullOr str;
|
|
default = "kittywit.ch.";
|
|
};
|
|
key_path = mkOption {
|
|
type = nullOr str;
|
|
default = if config.create_cert then nixos.secrets.files."${lib.removeSuffix "." config.cname}-key".path else null;
|
|
};
|
|
cert_path = mkOption {
|
|
type = nullOr str;
|
|
default = if config.create_cert then nixos.secrets.files."${lib.removeSuffix "." config.cname}-cert".path else null;
|
|
};
|
|
target = mkOption {
|
|
type = nullOr str;
|
|
default = if (config.type == "cname" && config.host != nixos.networking.hostName) then
|
|
meta.network.nodes.nixos.${config.host}.networks.${config.network}.target
|
|
else "${if config.domain == null then "" else "${config.domain}."}${config.zone}";
|
|
};
|
|
};
|
|
}));
|
|
};
|
|
networks = let
|
|
nixos = config;
|
|
in mkOption {
|
|
default = { };
|
|
type = with types; attrsOf (submodule ({ name, config, options, ... }: let
|
|
portRangeModule = { config, ... }: {
|
|
options = {
|
|
from = mkOption {
|
|
type = types.port;
|
|
};
|
|
to = mkOption {
|
|
type = types.port;
|
|
default = config.from;
|
|
};
|
|
/*isRange = mkOption {
|
|
type = types.bool;
|
|
default = assert config.to >= config.from; config.from != config.to;
|
|
readOnly = true;
|
|
};*/
|
|
};
|
|
};
|
|
portRangeType = types.submodule portRangeModule;
|
|
convToPort = value: if isInt value
|
|
then { from = value; }
|
|
else assert length value == 2; { from = elemAt value 0; to = elemAt value 1; };
|
|
portType = coercedTo (oneOf [ int (listOf int) ]) convToPort portRangeType;
|
|
in {
|
|
options = with types; {
|
|
interfaces = mkOption {
|
|
description = "Interfaces this network operates upon.";
|
|
type = listOf str;
|
|
default = [];
|
|
};
|
|
tcp = mkOption {
|
|
description = "Port numbers or ranges to allow TCP traffic outbound.";
|
|
type = listOf portType;
|
|
default = [];
|
|
};
|
|
udp = mkOption {
|
|
description = "Port numbers or ranges to allow UDP traffic outbound.";
|
|
type = listOf portType;
|
|
default = [];
|
|
};
|
|
ip = mkOption {
|
|
description = "The machine's IPv4 address on the network, if it has one.";
|
|
type = unspecified;
|
|
default = hostname: class: if hostname != nixos.networking.hostName then
|
|
if class == 6 then
|
|
config.ipv6
|
|
else if class == 4 then
|
|
config.ipv4
|
|
else throw "${nixos.networking.hostName}: IP for ${hostname} of ${class} is invalid."
|
|
else
|
|
if class == 6 then
|
|
config.ipv6
|
|
else if class == 4 then
|
|
config.ipv4
|
|
else throw "${nixos.networking.hostName}: IP for ${hostname} of ${class} is invalid.";
|
|
};
|
|
ipv4 = mkOption {
|
|
description = "The machine's IPv4 address on the network, if it has one.";
|
|
type = nullOr str;
|
|
};
|
|
ipv6 = mkOption {
|
|
description = "The machine's IPv6 address on the network, if it has one.";
|
|
type = nullOr str;
|
|
};
|
|
ipv4_defined = mkOption {
|
|
type = types.bool;
|
|
default = options.ipv4.isDefined;
|
|
};
|
|
ipv6_defined = mkOption {
|
|
type = types.bool;
|
|
default = options.ipv6.isDefined;
|
|
};
|
|
create_domain = mkOption {
|
|
type = bool;
|
|
default = config.extra_domains != [];
|
|
};
|
|
create_cert = mkOption {
|
|
type = bool;
|
|
default = config.extra_domains != [];
|
|
};
|
|
extra_domains = mkOption {
|
|
type = listOf str;
|
|
description = "Domains to add to the certificate generated for this network.";
|
|
default = [];
|
|
};
|
|
key_path = mkOption {
|
|
type = nullOr str;
|
|
default = if config.create_cert && config.interfaces != [] then nixos.secrets.files."${lib.removeSuffix "." config.target}-key".path else null;
|
|
};
|
|
cert_path = mkOption {
|
|
type = nullOr str;
|
|
default = if config.create_cert && config.interfaces != [] then nixos.secrets.files."${lib.removeSuffix "." config.target}-cert".path else null;
|
|
};
|
|
domain = mkOption {
|
|
type = nullOr str;
|
|
default = "${nixos.networking.hostName}${if config.prefix != null then ".${config.prefix}" else ""}";
|
|
};
|
|
prefix = mkOption {
|
|
type = nullOr str;
|
|
default = null;
|
|
};
|
|
zone = mkOption {
|
|
type = nullOr str;
|
|
default = "kittywit.ch.";
|
|
};
|
|
uqdn = mkOption {
|
|
type = nullOr str;
|
|
default = lib.removeSuffix "." config.target;
|
|
};
|
|
target = mkOption {
|
|
type = nullOr str;
|
|
default = "${config.domain}.${config.zone}";
|
|
};
|
|
};
|
|
}));
|
|
};
|
|
};
|
|
config = let
|
|
sane_networks = lib.filterAttrs (network: settings: settings.interfaces != []) config.networks;
|
|
in {
|
|
networks = {
|
|
internet = {
|
|
zone = mkDefault "kittywit.ch.";
|
|
create_domain = true;
|
|
};
|
|
chitei = {
|
|
zone = mkDefault "kittywit.ch.";
|
|
create_domain = false;
|
|
};
|
|
gensokyo = {
|
|
zone = mkDefault "gensokyo.zone.";
|
|
create_domain = true;
|
|
};
|
|
tailscale = mkMerge [
|
|
(mkIf tf.state.enable {
|
|
ipv4 = mkForce meta.tailnet.${config.networking.hostName}.ipv4 or null;
|
|
ipv6 = mkForce meta.tailnet.${config.networking.hostName}.ipv6 or null;
|
|
})
|
|
{
|
|
ipv4 = mkDefault "wawawawaawa";
|
|
ipv6 = mkDefault "awawawawawa";
|
|
interfaces = singleton "tailscale0";
|
|
zone = "inskip.me.";
|
|
create_domain = true;
|
|
create_cert = true;
|
|
}
|
|
];
|
|
};
|
|
|
|
networking.domain = "inskip.me";
|
|
|
|
deploy.tf = {
|
|
dns.records = let
|
|
# Families of address to create domains for
|
|
address_families = [ "ipv4" "ipv6" ];
|
|
domains = config.domains;
|
|
# Merge the result of a map upon address_families to mapAttrs'
|
|
domains' = map (family: mapAttrs' (name: settings: let
|
|
network = if settings.host != config.networking.hostName then
|
|
meta.network.nodes.nixos.${settings.host}.networks.${settings.network}
|
|
else sane_networks.${settings.network};
|
|
in nameValuePair "${settings.network}-${if settings.type == "both" || settings.type == family then family else settings.type}-${if settings.domain == "@" then "root" else settings.domain}-${settings.zone}" ({
|
|
inherit (settings) zone;
|
|
enable = mkDefault false;
|
|
} // optionalAttrs (settings.domain != null && settings.domain != "" && settings.domain != "@") {
|
|
inherit (settings) domain;
|
|
} // optionalAttrs (settings.domain == null || settings.domain == "" || settings.domain == "@") {
|
|
enable = mkForce true;
|
|
} // (optionalAttrs (settings.type == "cname" && family == "ipv4") {
|
|
cname = { inherit (network) target; };
|
|
enable = mkForce true;
|
|
}) // (optionalAttrs (network.ipv6_defined && family == "ipv6" && (settings.type == "both" || settings.type == family)) {
|
|
aaaa.address = network.ipv6;
|
|
enable = mkForce network.ipv6_defined;
|
|
})
|
|
// (optionalAttrs (!network.ipv4_defined && !network.ipv6_defined) {
|
|
a.address = "127.0.0.1";
|
|
enable = mkForce false;
|
|
}) // (optionalAttrs (network.ipv4_defined && family == "ipv4" && (settings.type == "both" || settings.type == family)) {
|
|
a.address = network.ipv4;
|
|
enable = mkForce network.ipv4_defined;
|
|
}))) domains) address_families;
|
|
networks = sane_networks;
|
|
# Networks to actually create domains for
|
|
networks' = filterAttrs (_: settings: settings.create_domain) networks;
|
|
# Extra domains to automatically be cnamed
|
|
extraDomainedNetworks = filterAttrs (_: settings: settings.extra_domains != []) networks';
|
|
extraDomains = listToAttrs (concatLists (mapAttrsToList (network: settings:
|
|
map (domain: let
|
|
split_domain = splitString "." domain;
|
|
isRoot = (length split_domain) <= 2;
|
|
in nameValuePair "${network}-cname-${if isRoot then "root" else elemAt split_domain ((length split_domain) - 2)}-${concatStringsSep "." (sublist (length split_domain - 2) (length split_domain) split_domain)}." {
|
|
zone = if isRoot then "${domain}." else "${concatStringsSep "." (sublist ((length split_domain) - 2) (length split_domain) split_domain)}.";
|
|
enable = !isRoot;
|
|
domain = if isRoot then "@"
|
|
else elemAt split_domain (length split_domain - 2);
|
|
cname = { inherit (settings) target; };
|
|
}) settings.extra_domains) extraDomainedNetworks));
|
|
# Merge the result of a map upon address_families to mapAttrs'
|
|
networks'' = map (family: mapAttrs' (network: settings:
|
|
nameValuePair "${network}-${family}-${settings.domain}-${settings.zone}" ({
|
|
inherit (settings) zone;
|
|
} // (if family == "ipv6" then {
|
|
aaaa.address = settings.ipv6;
|
|
enable = mkForce settings.ipv6_defined;
|
|
} else {
|
|
enable = mkForce settings.ipv4_defined;
|
|
a.address = settings.ipv4;
|
|
})
|
|
) // optionalAttrs (settings.domain != "@" && settings.domain != "" && settings.domain != null) {
|
|
inherit (settings) domain;
|
|
} // optionalAttrs (settings.domain == "@" || settings.domain == "" || settings.domain == null) {
|
|
}) networks') address_families;
|
|
in mkMerge (if tf.state.enable then (networks'' ++ domains' ++ [ extraDomains ]) else []);
|
|
|
|
acme = let
|
|
home = meta.deploy.targets.home.tf;
|
|
in {
|
|
enable = true;
|
|
account = {
|
|
emailAddress = "kat@inskip.me";
|
|
accountKeyPem = home.resources.acme_private_key.importAttr "private_key_pem";
|
|
};
|
|
challenge = {
|
|
defaultProvider = "rfc2136";
|
|
configs.rfc2136 = {
|
|
RFC2136_NAMESERVER = tf.variables.katdns-address.ref;
|
|
RFC2136_TSIG_KEY = tf.variables.katdns-name.ref;
|
|
RFC2136_TSIG_SECRET = tf.variables.katdns-key.ref;
|
|
RFC2136_TSIG_ALGORITHM = "hmac-sha512";
|
|
};
|
|
};
|
|
certs = let
|
|
nvP = network: settings: nameValuePair "${removeSuffix "." settings.target}" {
|
|
keyType = "4096";
|
|
dnsNames = [ (removeSuffix "." settings.target) ] ++ (lib.optionals (settings ? extra_domains) settings.extra_domains);
|
|
};
|
|
network_certs = mapAttrs' nvP (filterAttrs (network: settings: settings.create_cert) sane_networks);
|
|
domain_certs = mapAttrs' nvP (filterAttrs (network: settings: settings.create_cert) config.domains);
|
|
in domain_certs // network_certs;
|
|
};
|
|
|
|
variables = {
|
|
tailscale-authkey.export = true;
|
|
tailscale-apikey = {
|
|
value.shellCommand = "${meta.kw.secrets.command} secrets/tailscale -f api_key";
|
|
sensitive = true;
|
|
export = true;
|
|
};
|
|
};
|
|
providers.tailscale = {
|
|
inputs = {
|
|
api_key = tf.variables.tailscale-apikey.ref;
|
|
tailnet = "inskip.me";
|
|
};
|
|
};
|
|
resources.tailnet_key = {
|
|
provider = "tailscale";
|
|
type = "tailnet_key";
|
|
inputs = {
|
|
reusable = false;
|
|
ephemeral = false;
|
|
preauthorized = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
secrets.files = let
|
|
fixedTarget = settings: removeSuffix "." settings.target;
|
|
networks = mapAttrs' (network: settings:
|
|
nameValuePair "${fixedTarget settings}-cert" {
|
|
text = tf.acme.certs.${fixedTarget settings}.out.refFullchainPem;
|
|
owner = "nginx";
|
|
group = "domain-auth";
|
|
mode = "0440";
|
|
}
|
|
) (filterAttrs (_: settings: settings.create_cert) sane_networks);
|
|
networks' = mapAttrs' (network: settings:
|
|
nameValuePair "${fixedTarget settings}-key" {
|
|
text = tf.acme.certs.${fixedTarget settings}.out.refPrivateKeyPem;
|
|
owner = "nginx";
|
|
group = "domain-auth";
|
|
mode = "0440";
|
|
}
|
|
) (filterAttrs (_: settings: settings.create_cert) sane_networks);
|
|
domains = mapAttrs' (network: settings:
|
|
nameValuePair "${fixedTarget settings}-cert" {
|
|
text = tf.acme.certs.${fixedTarget settings}.out.refFullchainPem;
|
|
owner = settings.owner;
|
|
group = settings.group;
|
|
mode = "0440";
|
|
}
|
|
) (filterAttrs (network: settings: settings.create_cert) config.domains);
|
|
domains' = mapAttrs' (network: settings:
|
|
nameValuePair "${fixedTarget settings}-key" {
|
|
text = tf.acme.certs.${fixedTarget settings}.out.refPrivateKeyPem;
|
|
owner = settings.owner;
|
|
group = settings.group;
|
|
mode = "0440";
|
|
}
|
|
) (filterAttrs (_: settings: settings.create_cert) config.domains);
|
|
in networks // networks' // domains // domains';
|
|
|
|
services.nginx.virtualHosts = let
|
|
networkVirtualHosts = concatLists (mapAttrsToList (network: settings: map(domain: nameValuePair (if domain != "@" then domain else "root") {
|
|
forceSSL = true;
|
|
sslCertificate = config.secrets.files."${removeSuffix "." settings.target}-cert".path;
|
|
sslCertificateKey = config.secrets.files."${removeSuffix "." settings.target}-key".path;
|
|
}) ([ settings.target ] ++ settings.extra_domains)) (filterAttrs (_: settings: settings.create_cert) sane_networks));
|
|
domainVirtualHosts = (attrValues (mapAttrs (network: settings: removeSuffix "." settings.target) (filterAttrs (network: settings: settings.create_cert) config.domains)));
|
|
domainVirtualHosts' = (map (hostname2: let
|
|
hostname = if hasPrefix "@" hostname2 then "root" else hostname2;
|
|
in nameValuePair hostname {
|
|
forceSSL = true;
|
|
sslCertificate = mkDefault config.secrets.files."${hostname}-cert".path;
|
|
sslCertificateKey = mkDefault config.secrets.files."${hostname}-key".path;
|
|
}) domainVirtualHosts);
|
|
in listToAttrs (networkVirtualHosts ++ (lib.optionals config.services.nginx.enable domainVirtualHosts'));
|
|
|
|
users.groups.domain-auth = {
|
|
gid = 10600;
|
|
};
|
|
|
|
networking.firewall = {
|
|
interfaces = mkMerge (mapAttrsToList (network: settings:
|
|
genAttrs settings.interfaces (_: { allowedTCPPortRanges = settings.tcp; allowedUDPPortRanges = settings.udp; })
|
|
) (removeAttrs sane_networks ["tailscale"]));
|
|
trustedInterfaces = [ "tailscale0" ];
|
|
allowedTCPPorts = [ 5200 ];
|
|
allowedUDPPorts = [ config.services.tailscale.port ];
|
|
};
|
|
|
|
services.tailscale.enable = true;
|
|
|
|
systemd.services.tailscale-autoconnect = mkIf (builtins.getEnv "TF_IN_AUTOMATION" != "" || tf.state.enable) {
|
|
description = "Automatic connection to Tailscale";
|
|
|
|
# make sure tailscale is running before trying to connect to tailscale
|
|
after = [ "network-pre.target" "tailscale.service" ];
|
|
wants = [ "network-pre.target" "tailscale.service" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
# set this service as a oneshot job
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
# have the job run this shell script
|
|
script = with pkgs; ''
|
|
# wait for tailscaled to settle
|
|
sleep 2
|
|
|
|
# check if we are already authenticated to tailscale
|
|
status="$(${tailscale}/bin/tailscale status -json | ${jq}/bin/jq -r .BackendState)"
|
|
if [ $status = "Running" ]; then # if so, then do nothing
|
|
exit 0
|
|
fi
|
|
|
|
# otherwise authenticate with tailscale
|
|
# to-do: --advertise-exit-node
|
|
${tailscale}/bin/tailscale up -authkey ${tf.resources.tailnet_key.getAttr "key"}
|
|
'';
|
|
};
|
|
};
|
|
}
|