summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJoachim F <joachifm@users.noreply.github.com>2018-10-09 08:54:07 +0000
committerGitHub <noreply@github.com>2018-10-09 08:54:07 +0000
commit5fc62fa49cd05cee265c8014369610dff1613dfb (patch)
treeefa563f77d1b873c7e63658a34253e7a4bd6ba5b /nixos
parent83af0d8db412ecc4d86085e29ce28c4db3d3d89d (diff)
parent751c64754fd289a6bef611979de671519d4745d0 (diff)
downloadnixlib-5fc62fa49cd05cee265c8014369610dff1613dfb.tar
nixlib-5fc62fa49cd05cee265c8014369610dff1613dfb.tar.gz
nixlib-5fc62fa49cd05cee265c8014369610dff1613dfb.tar.bz2
nixlib-5fc62fa49cd05cee265c8014369610dff1613dfb.tar.lz
nixlib-5fc62fa49cd05cee265c8014369610dff1613dfb.tar.xz
nixlib-5fc62fa49cd05cee265c8014369610dff1613dfb.tar.zst
nixlib-5fc62fa49cd05cee265c8014369610dff1613dfb.zip
Merge pull request #48043 from Vskilet/emby
nixos/emby : use the dataDir option
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/misc/emby.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/emby.nix b/nixos/modules/services/misc/emby.nix
index 151edd0e761a..0ad4a3f7376f 100644
--- a/nixos/modules/services/misc/emby.nix
+++ b/nixos/modules/services/misc/emby.nix
@@ -55,7 +55,7 @@ in
         User = cfg.user;
         Group = cfg.group;
         PermissionsStartOnly = "true";
-        ExecStart = "${pkgs.emby}/bin/emby";
+        ExecStart = "${pkgs.emby}/bin/emby -programdata ${cfg.dataDir}";
         Restart = "on-failure";
       };
     };