summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Hammer <freddymaerz@googlemail.com>2023-01-11 17:13:59 +0100
committermakefu <github@syntax-fehler.de>2023-06-29 20:05:50 +0200
commitc69d4283545e8cf0859476e712e4cd932b048eb8 (patch)
tree5c59d1f732fef1ede7278c51463688d0c278461c
parent842a015a3c3f2a4089aecf510db66c0ca7b286d5 (diff)
ma bureauautomation: add jellyfin
-rw-r--r--2configs/bureautomation/jellyfin.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/2configs/bureautomation/jellyfin.nix b/2configs/bureautomation/jellyfin.nix
new file mode 100644
index 000000000..a939e807b
--- /dev/null
+++ b/2configs/bureautomation/jellyfin.nix
@@ -0,0 +1,8 @@
+{ lib, config, ... }:
+{
+ services.jellyfin.enable = true;
+ services.jellyfin.openFirewall = true;
+ state = [ "/var/lib/jellyfin" ];
+ users.users.${config.services.jellyfin.user}.extraGroups = [ "video" "render" ];
+
+}