{ zentralwerk, hostRegistry, config, options, lib, pkgs, ... }: let cfg = config.c3d2; hqPrefix64 = lib.removeSuffix "::" (builtins.head ( builtins.split "/" zentralwerk.lib.config.site.net.c3d2.subnets6.dn42 )); neighMod = with lib; types.submodule { options = { addrs = mkOption { type = with types; attrsOf str; default = { }; }; via = mkOption { type = with types; listOf str; default = [ ]; }; } // (with builtins; let value = mkOption { type = types.str; }; in listToAttrs (map (name: { inherit name value; }) [ "exchpub" "id" "noisepub" "signpub" ])); }; # Generate a deterministic IPv6 address for a 64 bit prefix # and seed string. Prefix must not contain trailing ':'. toIpv6Address = prefix64: seed: with builtins; let digest = builtins.hashString "sha256" seed; hextets = map (i: substring (4 * i) 4 digest) [ 0 1 2 3 ]; in concatStringsSep ":" ([ prefix64 ] ++ hextets); # Generate a deterministic public IPv6 addresses # for the HQ networking using a seed string. toHqPrivateAddress = toIpv6Address hqPrefix64; in { options.c3d2 = with lib; { allUsersCanSshRoot = lib.mkOption { type = lib.types.bool; default = true; description = '' Let all people in c3d2.users login as root for deployment via SSH. ''; }; enableMotd = mkOption { type = types.bool; default = true; }; mergeNncpSettings = mkEnableOption '' Whether to merge c3d2.nncp.<…>.nncp into programs.nncp.settings. ''; k-ot.enable = mkEnableOption '' Add k-ot user to this machine. Anyone with an SSH key listed in c3d2.users can log in as this user. ''; hq = { interface = mkOption { type = with types; nullOr str; default = null; example = "eth0"; description = '' Configure the given interface name with an internal IP address. ''; }; journalToMqtt = mkOption { type = types.bool; # broken :( default = false; }; }; nncp = { neigh = mkOption { type = with types; attrsOf neighMod; default = { }; description = '' Attrset of NNCP neighbours for relaying packets. User endpoints go in c3d2.users. ''; }; }; simd = { enable = lib.mkEnableOption "optimized builds with simd instructions"; arch = lib.mkOption { type = with lib.types; nullOr str; default = null; description = '' Microarchitecture string for nixpkgs.hostPlatform.gcc.march and to generate system-features. Can be determined with: gcc -march=native -Q --help=target | grep march ''; }; }; sshKeys = mkOption { type = with types; attrsOf (listOf str); default = [ ]; }; }; config = let adminKeys = with builtins; lib.lists.flatten (attrValues cfg.sshKeys); in { programs.nncp.settings = lib.optionalAttrs cfg.mergeNncpSettings cfg.nncp; users.motd = lib.mkIf cfg.enableMotd (builtins.readFile ./motd); users = { users = { k-ot = lib.mkIf cfg.k-ot.enable { createHome = true; isNormalUser = true; uid = 1000; extraGroups = [ "audio" "video" "wheel" ]; password = "k-otk-ot"; openssh.authorizedKeys.keys = adminKeys; }; root.openssh.authorizedKeys.keys = lib.mkIf cfg.allUsersCanSshRoot adminKeys; }; }; services.vector = lib.mkIf config.c3d2.hq.journalToMqtt { enable = true; journaldAccess = true; settings = { sources.journal = { type = "journald"; current_boot_only = true; }; sinks.mqtt = { inputs = [ "journal" ]; type = "mqtt"; host = "broker.serv.zentralwerk.org"; # port = 8883; user = "SECRET[mqtt.user]"; password = "SECRET[mqtt.password]"; client_id = "vector-${config.networking.hostName}"; encoding.codec = "json"; topic = "journal/{{ host }}/{{ _SYSTEMD_UNIT }}/{{ PRIORITY }}"; # tls.enabled = true; # tls.ca_file = "/etc/ssl/certs/ca-certificates.crt"; }; secret.mqtt = let catSecrets = with pkgs; writeScript "cat-vector-secrets" '' #!${runtimeShell} -e echo '{' COMMA=n for F in $@; do if [ $COMMA = y ]; then echo ' ,' else COMMA=y fi echo ' "'$(basename $F)'": {"value": "'$(cat $F)'", "error": null }' done echo '}' ''; in { type = "exec"; command = [ catSecrets config.sops.secrets."mqtt/user".path config.sops.secrets."mqtt/password".path ]; }; }; }; sops.secrets = lib.mkIf config.c3d2.hq.journalToMqtt { "mqtt/user" = { sopsFile = ../modules/mqtt.yaml; owner = config.systemd.services.vector.serviceConfig.User; }; "mqtt/password" = { sopsFile = ../modules/mqtt.yaml; owner = config.systemd.services.vector.serviceConfig.User; }; }; boot.cleanTmpDir = true; documentation.nixos.enable = false; i18n = { defaultLocale = "en_US.UTF-8"; supportedLocales = [ "en_US.UTF-8/UTF-8" "de_DE.UTF-8/UTF-8" ]; }; systemd.network.networks = lib.mkIf (cfg.hq.interface != null && config.networking.useNetworkd) { "40-eth0".routes = [{ routeConfig = { Gateway = "172.22.99.4"; GatewayOnLink = true; }; }]; }; networking = { interfaces = lib.mkIf (cfg.hq.interface != null) { "${cfg.hq.interface}".ipv6.addresses = [{ address = toHqPrivateAddress config.networking.hostName; prefixLength = 64; }]; }; nameservers = with hostRegistry.dnscache; [ ip4 ip6 "9.9.9.9" ]; useHostResolvConf = lib.mkIf (!config.services.resolved.enable) true; }; environment.etc."resolv.conf" = lib.mkIf (!config.services.resolved.enable) { text = lib.concatMapStrings (ns: '' nameserver ${ns} '') config.networking.nameservers; }; nix = { settings = { builders-use-substitutes = true; connect-timeout = 20; experimental-features = "nix-command flakes"; fallback = true; trusted-public-keys = [ "nix-serve.hq.c3d2.de:KZRGGnwOYzys6pxgM8jlur36RmkJQ/y8y62e52fj1ps=" ]; # don't self feed hydra substituters = lib.mkIf (config.networking.hostName != "hydra") ( lib.mkBefore [ "https://nix-serve.hq.c3d2.de" ] ); }; gc = { automatic = lib.mkDefault true; dates = "06:00"; options = "--delete-older-than 21d"; randomizedDelaySec = "6h"; }; registry.c3d2 = { from = { id = "c3d2"; type = "indirect"; }; to = { type = "git"; url = "https://gitea.c3d2.de/C3D2/nix-config.git"; }; }; }; services.openssh = { # Required for deployment and sops enable = true; permitRootLogin = "prohibit-password"; }; sops.age.sshKeyPaths = lib.mkDefault [ "/etc/ssh/ssh_host_ed25519_key" ]; environment = { noXlibs = (!lib.any (host: host == config.networking.hostName) [ "dacbert" "glotzbert" "rpi-netboot" ]); systemPackages = with pkgs; [ bmon curl dig ethtool git htop iotop mtr pv ripgrep screen tcpdump tmux tree vim wget ]; }; programs = { fzf.keybindings = true; ssh.knownHosts = let hosts = (import ../ssh-public-keys.nix).hosts; list = map (name: { inherit name; value = let ip6 = if zentralwerk.lib.config.site.net-combined.hosts6 ? name then zentralwerk.lib.config.site.net.hosts6.${name} else toHqPrivateAddress name; in { publicKey = lib.head (lib.getAttr name hosts); hostNames = [ ip6 "${name}.hq.c3d2.de" name ]; }; }) (builtins.attrNames hosts); keyedHosts = lib.filter (x: x.value.publicKey != null || x.value.publicKeyFile != null) list; in lib.listToAttrs keyedHosts; vim.defaultEditor = true; }; time.timeZone = lib.mkDefault "Europe/Berlin"; # Reboot on hang systemd.watchdog = lib.mkIf (!config.boot.isContainer) { runtimeTime = "15s"; rebootTime = "15s"; }; security.acme = { acceptTerms = true; defaults = { email = "mail@c3d2.de"; # letsencrypt staging server with way higher rate limits # server = "https://acme-staging-v02.api.letsencrypt.org/directory"; }; }; zramSwap.enable = true; }; }