Merge pull request #5276 from abbradar/nginx-types

nixos/nginx: add more types

+3
+3
nixos/modules/services/web-servers/nginx/default.nix
··· 23 23 services.nginx = { 24 24 enable = mkOption { 25 25 default = false; 26 + type = types.bool; 26 27 description = " 27 28 Enable the nginx Web Server. 28 29 "; ··· 70 71 }; 71 72 72 73 user = mkOption { 74 + type = types.str; 73 75 default = "nginx"; 74 76 description = "User account under which nginx runs."; 75 77 }; 76 78 77 79 group = mkOption { 80 + type = types.str; 78 81 default = "nginx"; 79 82 description = "Group account under which nginx runs."; 80 83 };