summaryrefslogtreecommitdiffstats
path: root/2configs/bureautomation/jellyfin.nix
diff options
context:
space:
mode:
Diffstat (limited to '2configs/bureautomation/jellyfin.nix')
-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" ];
+
+}