summary refs log tree commit diff
path: root/nixos/modules/services/web-apps/tt-rss.nix
diff options
context:
space:
mode:
authorNadrieril <nadrieril@gmail.com>2016-08-27 12:10:30 -0700
committerNadrieril <nadrieril@gmail.com>2016-08-27 13:54:46 -0700
commit3a4db71b35dee7a4c427ae9692f8a0a8e2c1924d (patch)
tree79812adb63207aaaffa695d7fb235e4c0d96a7c2 /nixos/modules/services/web-apps/tt-rss.nix
parentbc9c9dd6bde6b2dcf8b4b413fc7942ea2434edd1 (diff)
downloadnixpkgs-3a4db71b35dee7a4c427ae9692f8a0a8e2c1924d.tar
nixpkgs-3a4db71b35dee7a4c427ae9692f8a0a8e2c1924d.tar.gz
nixpkgs-3a4db71b35dee7a4c427ae9692f8a0a8e2c1924d.tar.bz2
nixpkgs-3a4db71b35dee7a4c427ae9692f8a0a8e2c1924d.tar.lz
nixpkgs-3a4db71b35dee7a4c427ae9692f8a0a8e2c1924d.tar.xz
nixpkgs-3a4db71b35dee7a4c427ae9692f8a0a8e2c1924d.tar.zst
nixpkgs-3a4db71b35dee7a4c427ae9692f8a0a8e2c1924d.zip
tt-rss service: Use the correct user to run the application
Diffstat (limited to 'nixos/modules/services/web-apps/tt-rss.nix')
-rw-r--r--nixos/modules/services/web-apps/tt-rss.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/web-apps/tt-rss.nix b/nixos/modules/services/web-apps/tt-rss.nix
index 83d2b8ad5af..db809903233 100644
--- a/nixos/modules/services/web-apps/tt-rss.nix
+++ b/nixos/modules/services/web-apps/tt-rss.nix
@@ -105,7 +105,7 @@ let
         default = "nginx";
         example = "nginx";
         description = ''
-          User account under which both the service and the web-application run.
+          User account under which both the update daemon and the web-application run.
         '';
       };
 
@@ -462,7 +462,7 @@ let
         listen.owner = nginx
         listen.group = nginx
         listen.mode = 0600
-        user = nginx
+        user = ${cfg.user}
         pm = dynamic
         pm.max_children = 75
         pm.start_servers = 10