{ config, lib, pkgs, ... }: with import ; let external-ip = config.krebs.build.host.nets.internet.ip4.addr; ext-if = config.makefu.server.primary-itf; in { imports = [ ./hardware-config.nix { users.users.lass = { uid = 9002; isNormalUser = true; createHome = true; useDefaultShell = true; openssh.authorizedKeys.keys = with config.krebs.users; [ lass.pubkey makefu.pubkey ]; }; } # # # # Security # Tools # services # # # network # # buildbot ## Web # # # # # ## # # # # # # # # { services.taskserver.enable = true; services.taskserver.fqdn = config.krebs.build.host.name; services.taskserver.listenHost = "::"; services.taskserver.organisations.home.users = [ "makefu" ]; networking.firewall.extraCommands = '' iptables -A INPUT -i retiolum -p tcp --dport 53589 -j ACCEPT ip6tables -A INPUT -i retiolum -p tcp --dport 53589 -j ACCEPT ''; } # # # # # Temporary: # #{ # services.dockerRegistry.enable = true; # networking.firewall.allowedTCPPorts = [ 8443 ]; # services.nginx.virtualHosts."euer.krebsco.de" = { # forceSSL = true; # enableACME = true; # extraConfig = '' # client_max_body_size 1000M; # ''; # locations."/".proxyPass = "http://localhost:5000"; # }; #} ]; makefu.dl-dir = "/var/download"; services.openssh.hostKeys = [ { bits = 4096; path = (toString ); type = "rsa"; } { path = (toString ); type = "ed25519"; } ]; ###### stable services.nginx.virtualHosts.cgit.serverAliases = [ "cgit.euer.krebsco.de" ]; krebs.build.host = config.krebs.hosts.gum; krebs.tinc.retiolum = { extraConfig = '' ListenAddress = ${external-ip} 53 ListenAddress = ${external-ip} 655 ListenAddress = ${external-ip} 21031 ''; connectTo = [ "muhbaasu" "tahoe" "flap" "wry" "ni" "fastpoke" "prism" "dishfire" "echelon" "cloudkrebs" ]; }; # access users.users = { root.openssh.authorizedKeys.keys = [ config.krebs.users.makefu-omo.pubkey ]; makefu.openssh.authorizedKeys.keys = [ config.krebs.users.makefu-vbob.pubkey config.krebs.users.makefu-bob.pubkey ]; }; # Network networking = { firewall = { allowPing = true; logRefusedConnections = false; allowedTCPPorts = [ # smtp 25 # http 80 443 # httptunnel 8080 8443 # tinc 655 # tinc-shack 21032 # tinc-retiolum 21031 # taskserver 53589 # temp vnc 18001 # temp reverseshell 31337 ]; allowedUDPPorts = [ # tinc 655 53 # tinc-retiolum 21031 # tinc-shack 21032 ]; }; nameservers = [ "8.8.8.8" ]; }; users.users.makefu.extraGroups = [ "download" "nginx" ]; boot.tmpOnTmpfs = true; }