{ modulesPath, lib, pkgs, ... }: { imports = [ ./hardware-configuration.nix ./nginx.nix ../../users.nix ../../base.nix ../../server.nix ]; boot = { loader.grub = { enable = true; device = "/dev/vda"; }; }; networking = { hostName = "yn-bkk"; # use Digital Ocean metadata server }; networking.firewall = { enable = false; # allowedTCPPorts = [ 993 465 40308 80 443 53 51820 5522 ]; # allowedUDPPorts = [ 993 465 40308 80 443 53 50000 50001 50002 50003 50004 50005 50006 50007 50008 50009 50010 51820 5522 ]; }; services.ntfy-sh = { enable = true; settings = { base-url = "https://n.urbit.men"; listen-http = ":8090"; }; }; system.stateVersion = "24.05"; # Did you read the comment? }