From 60287f0793bce947e5ea840104a0d99c283d1690 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=B9=82=E0=B8=97=E0=B8=AA=E0=B8=BA=E0=B8=95=E0=B8=B1?= =?UTF-8?q?=E0=B8=A5?= Date: Fri, 21 Feb 2025 19:53:46 +0700 Subject: [PATCH] nixos/h2o: add missing Group to systemd --- nixos/modules/services/web-servers/h2o/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/web-servers/h2o/default.nix b/nixos/modules/services/web-servers/h2o/default.nix index 896736f5c57a..8954d816eef5 100644 --- a/nixos/modules/services/web-servers/h2o/default.nix +++ b/nixos/modules/services/web-servers/h2o/default.nix @@ -210,6 +210,7 @@ in ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; ExecStop = "${pkgs.coreutils}/bin/kill -s QUIT $MAINPID"; User = cfg.user; + Group = cfg.group; Restart = "always"; RestartSec = "10s"; RuntimeDirectory = "h2o";