{ lib, config, pkgs, ... }: let inherit (import ) kieran retiolumAddresses; in { imports = [ ./hardware-configuration.nix # ]; nix.nixPath = ["/var/src"]; networking = { firewall.allowedTCPPorts = [80 443]; hostName = "ful"; interfaces.enp0s3.useDHCP = true; retiolum = retiolumAddresses.ful; useDHCP = false; }; system.stateVersion = "21.11"; services.nginx = { enable = true; recommendedGzipSettings = true; recommendedOptimisation = true; recommendedProxySettings = true; recommendedTlsSettings = true; sslCiphers = "AES256+EECDH:AES256+EDH:!aNULL"; }; security.acme = { acceptTerms = true; defaults.email = kieran.email; }; users.users.root.passwordFile = toString ; environment.systemPackages = [pkgs.vim pkgs.git pkgs.tmux pkgs.python3]; }