summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Wood <david@davidtw.co>2019-07-07 12:31:28 +0100
committerDavid Wood <david@davidtw.co>2019-07-07 12:31:28 +0100
commite2247dceb3c5ca896d2eda49eb91c548c1c3e91b (patch)
tree9269fcfbd4126a2cb4704cd6b5199a332c3cd79c
parent5510c82fdefecf411f07d68dbbf27d75924025b9 (diff)
downloadnixpkgs-e2247dceb3c5ca896d2eda49eb91c548c1c3e91b.tar
nixpkgs-e2247dceb3c5ca896d2eda49eb91c548c1c3e91b.tar.gz
nixpkgs-e2247dceb3c5ca896d2eda49eb91c548c1c3e91b.tar.bz2
nixpkgs-e2247dceb3c5ca896d2eda49eb91c548c1c3e91b.tar.lz
nixpkgs-e2247dceb3c5ca896d2eda49eb91c548c1c3e91b.tar.xz
nixpkgs-e2247dceb3c5ca896d2eda49eb91c548c1c3e91b.tar.zst
nixpkgs-e2247dceb3c5ca896d2eda49eb91c548c1c3e91b.zip
nixos/lidarr: re-add home attribute
This was accidentally removed in a previous PR and broke things.
-rw-r--r--nixos/modules/services/misc/lidarr.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/services/misc/lidarr.nix b/nixos/modules/services/misc/lidarr.nix
index 4c37bd74f15..40755c16217 100644
--- a/nixos/modules/services/misc/lidarr.nix
+++ b/nixos/modules/services/misc/lidarr.nix
@@ -68,6 +68,7 @@ in
     users.users = mkIf (cfg.user == "lidarr") {
       lidarr = {
         group = cfg.group;
+        home = "/var/lib/lidarr";
         uid = config.ids.uids.lidarr;
       };
     };