From 51f78ade780e2cd94d3fa2fb855aa02742bc7664 Mon Sep 17 00:00:00 2001 From: Linus Heckemann Date: Thu, 17 Mar 2022 23:52:20 +0100 Subject: [PATCH] nixos/jira: set home for jira user Some plugins rely on being able to write to the user's home directory. --- nixos/modules/services/web-apps/atlassian/jira.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/web-apps/atlassian/jira.nix b/nixos/modules/services/web-apps/atlassian/jira.nix index d7a26838d6f8..a120f6cdb3d8 100644 --- a/nixos/modules/services/web-apps/atlassian/jira.nix +++ b/nixos/modules/services/web-apps/atlassian/jira.nix @@ -151,6 +151,7 @@ in users.users.${cfg.user} = { isSystemUser = true; group = cfg.group; + home = cfg.home; }; users.groups.${cfg.group} = {};