nixos-dotfiles

nixos-dotfiles

https://git.tonybtw.com/nixos-dotfiles.git git://git.tonybtw.com/nixos-dotfiles.git
346 bytes raw
1
{ ... }:
2
{
3
  services.nginx = {
4
    enable = true;
5
    recommendedGzipSettings = true;
6
    recommendedOptimisation = true;
7
    recommendedProxySettings = true;
8
    recommendedTlsSettings = true;
9
  };
10
11
  security.acme = {
12
    acceptTerms = true;
13
    defaults.email = "tony@tonybtw.com";
14
  };
15
16
  networking.firewall.allowedTCPPorts = [ 80 443 ];
17
}