{ 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 # # networking # # # # ci # # services # sharing # ## # { # ncdc environment.systemPackages = [ pkgs.ncdc ]; networking.firewall = { allowedUDPPorts = [ 51411 ]; allowedTCPPorts = [ 51411 ]; }; } # ## network # # Removed until move: no extra mails # Removed until move: avoid letsencrypt ban ### Web # # ## # # # # sharing ## Temporary: # # krebs infrastructure services ]; 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 = [ "prism" "ni" "enklave" "dishfire" "echelon" "hotdog" ]; }; # 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 ]; }; # Chat environment.systemPackages = with pkgs;[ weechat bepasty-client-cli tmux ]; # Hardware # 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; state = [ "/home/makefu/.weechat" ]; }