{ lib, ... }: with lib; { imports = [ ../../options/machine.nix ]; config.machine = { hostName = "Ophanim"; domain = "ophanim.de"; allowUnfree = true; conffiles = [ "etcvars" "security" "zsh" ]; pkgs = [ "base" "server" ]; services = [ "fail2ban" "gitea" "hydra" "mailserver" "mariaDB" "nextcloud" "nginx" "openssh" "webblog" ]; firewall = { allowPing = false; allowedUDPPorts = [ 22 80 443 ]; allowedTCPPorts = [ 80 443 ]; # 5222 5269 ]; allowedUDPPortRanges = []; allowedTCPPortRanges = []; }; }; }