summary refs log tree commit diff
path: root/modules/jellyfin.nix
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2024-11-29 23:28:42 +0100
committerMel <einebeere@gmail.com>2024-11-29 23:30:18 +0100
commitcc65f6a38e7d4606b167587333088aef5ba8d49e (patch)
tree162b5b45322565da4b66dddd45004a3a7f4cd149 /modules/jellyfin.nix
parent8cbe7d9dc97940d27582bf1c977fb3d723a1e5cd (diff)
downloadminerals-cc65f6a38e7d4606b167587333088aef5ba8d49e.tar.zst
minerals-cc65f6a38e7d4606b167587333088aef5ba8d49e.zip
Remove jellyfin from bismuth (now on corsac)
Signed-off-by: Mel <einebeere@gmail.com>
Diffstat (limited to 'modules/jellyfin.nix')
-rw-r--r--modules/jellyfin.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/modules/jellyfin.nix b/modules/jellyfin.nix
deleted file mode 100644
index b285161..0000000
--- a/modules/jellyfin.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{ config, pkgs, auxiliaryPkgs, ... }:
-
-{
-  services.jellyfin = {
-    enable = true;
-    openFirewall = true;
-    package = auxiliaryPkgs.jellyfin;
-  };
-
-  environment.systemPackages = (with auxiliaryPkgs; [
-    jellyfin
-    jellyfin-web
-    pkgs.jellyfin-ffmpeg
-  ]);
-}