From 6775bf772ac0c124ffe8cb7aeb96772fb74866a0 Mon Sep 17 00:00:00 2001 From: Squibid Date: Sun, 11 Jan 2026 17:27:59 -0500 Subject: [PATCH] fix the if statement --- module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module.nix b/module.nix index d9be66f..079f973 100644 --- a/module.nix +++ b/module.nix @@ -28,7 +28,7 @@ cfg = config.services.fooud; in lib.mkIf cfg.enable { environment.systemPackages = with pkgs; [ git ]; - users.users."${cfg.user}" = lib.mkIf cfg.user != "root" { + users.users."${cfg.user}" = lib.mkIf (cfg.user != "root") { group = "${cfg.user}"; isSystemUser = true; createHome = true;