1
1
Files
deployed-nixos-server-and-apps/nixos-apps/default.nix
Bill Ewanick fb6d498ad5
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s
Gitea Actions Demo / build-site (push) Successful in 4s
Add emanotes flake part
2026-01-04 01:46:24 -05:00

27 lines
596 B
Nix

{
imports = [
./crueltysquad.com.nix
./jitsi.crueltysquad.com.nix
./cutesealfanpage.love.nix
# ./ewanick.com.nix
./git.ewanick.com.nix
# ./paperless.ewanick.com.nix
./fancytypist.com.nix
];
# 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";
networking.firewall.allowedTCPPorts = [
80
443
];
}