aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/modules/services/networking/nghttpx/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/modules/services/networking/nghttpx/default.nix')
-rw-r--r--nixpkgs/nixos/modules/services/networking/nghttpx/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixpkgs/nixos/modules/services/networking/nghttpx/default.nix b/nixpkgs/nixos/modules/services/networking/nghttpx/default.nix
index 881a2670f5d..b8a0a24e3aa 100644
--- a/nixpkgs/nixos/modules/services/networking/nghttpx/default.nix
+++ b/nixpkgs/nixos/modules/services/networking/nghttpx/default.nix
@@ -60,7 +60,7 @@ let
# NB: nghttpx doesn't accept "tls", you must omit "no-tls" for
# the default behavior of turning on TLS.
params1 = lib.remove "tls" params0;
-
+
sections = [ host] ++ params1;
formattedSections = lib.concatStringsSep ";" sections;
in
@@ -90,7 +90,7 @@ in
{ imports = [
./nghttpx-options.nix
];
-
+
config = lib.mkIf cfg.enable {
users.groups.nghttpx = { };
@@ -98,7 +98,7 @@ in
group = config.users.groups.nghttpx.name;
isSystemUser = true;
};
-
+
systemd.services = {
nghttpx = {