feat(shiro): Added preliminary jellyfin.nix module

This commit is contained in:
uttarayan21
2025-02-12 22:08:43 +05:30
parent a3b10ee2bf
commit 8021a47841
4 changed files with 90 additions and 1 deletions

View File

@@ -3,5 +3,6 @@
./yabai.nix
./skhd.nix
./tailscale.nix
./jellyfin.nix
];
}

View File

@@ -0,0 +1,14 @@
{...}: {
imports = [../../../modules/jellyfin.nix];
services = {
jellyfin = {
enable = false;
# openFirewall = true;
};
# caddy = {
# virtualHosts."media.darksailor.dev".extraConfig = ''
# reverse_proxy localhost:8096
# '';
# };
};
}