1
1
Fork 0
deployed-nixos-server-and-apps/nixos-apps/default.nix

20 lines
547 B
Nix
Raw Normal View History

{
imports = [
./crueltysquad.com.nix
./cutesealfanpage.love.nix
./ewanick.com.nix
./fancytypist.com.nix
./git.ewanick.com.nix
./jitsi.crueltysquad.com.nix
];
2023-09-23 13:28:38 -04:00
# when in doubt, clear away the certs with
# sudo rm -rf /var/lib/acme/
security.acme.acceptTerms = true;
security.acme.defaults.email = "admin@cutesealfanpage.love";
# uncomment this to use the staging server
# security.acme.server = "https://acme-staging-v02.api.letsencrypt.org/directory";
2023-09-23 13:46:29 -04:00
networking.firewall.allowedTCPPorts = [ 80 443 ];
}