summary refs log tree commit diff
path: root/nixos/modules/services/misc/ombi.nix
diff options
context:
space:
mode:
authorAndrei Pampu <pampu.s.andrei@gmail.com>2021-04-29 10:52:02 +0300
committerAndrei Pampu <pampu.s.andrei@gmail.com>2021-04-29 10:52:02 +0300
commite88bf5f13b0eb099a66a3aa5a95f1e13eb1a10c4 (patch)
tree7da34dcf62c11c7c6f6259a73506b51bb29b85be /nixos/modules/services/misc/ombi.nix
parent5d1f29f0e69c406ef8beeaf5483e1549fe0d01df (diff)
downloadnixpkgs-e88bf5f13b0eb099a66a3aa5a95f1e13eb1a10c4.tar
nixpkgs-e88bf5f13b0eb099a66a3aa5a95f1e13eb1a10c4.tar.gz
nixpkgs-e88bf5f13b0eb099a66a3aa5a95f1e13eb1a10c4.tar.bz2
nixpkgs-e88bf5f13b0eb099a66a3aa5a95f1e13eb1a10c4.tar.lz
nixpkgs-e88bf5f13b0eb099a66a3aa5a95f1e13eb1a10c4.tar.xz
nixpkgs-e88bf5f13b0eb099a66a3aa5a95f1e13eb1a10c4.tar.zst
nixpkgs-e88bf5f13b0eb099a66a3aa5a95f1e13eb1a10c4.zip
nixos/ombi: set ombi as system user
Diffstat (limited to 'nixos/modules/services/misc/ombi.nix')
-rw-r--r--nixos/modules/services/misc/ombi.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/services/misc/ombi.nix b/nixos/modules/services/misc/ombi.nix
index 83f433e0be4..b5882168e51 100644
--- a/nixos/modules/services/misc/ombi.nix
+++ b/nixos/modules/services/misc/ombi.nix
@@ -70,6 +70,7 @@ in {
 
     users.users = mkIf (cfg.user == "ombi") {
       ombi = {
+        isSystemUser = true;
         group = cfg.group;
         home = cfg.dataDir;
       };