summary refs log tree commit diff
path: root/nixos/modules/services/web-apps
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-10-05 22:41:27 -0500
committerGitHub <noreply@github.com>2018-10-05 22:41:27 -0500
commitef7d2215a53df048bd3395b89db7b4e5dc2edc25 (patch)
treee99505863ce88971b24902612009e6e7a9e7ccaf /nixos/modules/services/web-apps
parenta0a7da87818fff0faf6bcf4ba3b24336754d0ab6 (diff)
parentbe6e99508539a2c5e66df0220b2d19f687983423 (diff)
downloadnixlib-ef7d2215a53df048bd3395b89db7b4e5dc2edc25.tar
nixlib-ef7d2215a53df048bd3395b89db7b4e5dc2edc25.tar.gz
nixlib-ef7d2215a53df048bd3395b89db7b4e5dc2edc25.tar.bz2
nixlib-ef7d2215a53df048bd3395b89db7b4e5dc2edc25.tar.lz
nixlib-ef7d2215a53df048bd3395b89db7b4e5dc2edc25.tar.xz
nixlib-ef7d2215a53df048bd3395b89db7b4e5dc2edc25.tar.zst
nixlib-ef7d2215a53df048bd3395b89db7b4e5dc2edc25.zip
Merge pull request #46856 from dasJ/tt_rss_uid
nixos/tt_rss: Give a proper UID
Diffstat (limited to 'nixos/modules/services/web-apps')
-rw-r--r--nixos/modules/services/web-apps/tt-rss.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/nixos/modules/services/web-apps/tt-rss.nix b/nixos/modules/services/web-apps/tt-rss.nix
index 2b171aa1b2b2..90b35d19ea11 100644
--- a/nixos/modules/services/web-apps/tt-rss.nix
+++ b/nixos/modules/services/web-apps/tt-rss.nix
@@ -624,7 +624,11 @@ let
     };
 
     users = optionalAttrs (cfg.user == "tt_rss") {
-      users.tt_rss.group = "tt_rss";
+      users.tt_rss = {
+        description = "tt-rss service user";
+        isSystemUser = true;
+        group = "tt_rss";
+      };
       groups.tt_rss = {};
     };
   };