my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

nixos/services/nginx: fmt

isabel dc71fd3d 39241697

+9 -12
+9 -12
modules/nixos/services/nginx.nix
··· 22 22 # https://github.com/getchoo/borealis/blob/6e5ad4fb14a0de172c64e0d6a9d6f63ed7df88e6/modules/nixos/mixins/nginx.nix#L5 23 23 services.nginx.virtualHosts = mkOption { 24 24 type = types.attrsOf ( 25 - types.submodule ( 26 - _: 27 - { 28 - freeformType = types.attrsOf types.anything; 25 + types.submodule (_: { 26 + freeformType = types.attrsOf types.anything; 29 27 30 - config = { 31 - quic = mkDefault true; 32 - forceSSL = mkDefault true; 33 - enableACME = mkDefault false; 34 - useACMEHost = mkDefault cfg.domain; 35 - }; 36 - } 37 - ) 28 + config = { 29 + quic = mkDefault true; 30 + forceSSL = mkDefault true; 31 + enableACME = mkDefault false; 32 + useACMEHost = mkDefault cfg.domain; 33 + }; 34 + }) 38 35 ); 39 36 }; 40 37