mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
d021baa1bb
required because they don't share all attributes
32 lines
711 B
Nix
32 lines
711 B
Nix
{ config, lib, ... }: {
|
|
|
|
options = {
|
|
streamServer = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "Hostname for Jellyfin library";
|
|
default = null;
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf (config.streamServer != null) {
|
|
|
|
services.jellyfin.enable = true;
|
|
|
|
caddy.routes = [{
|
|
match = [{ host = [ config.streamServer ]; }];
|
|
handle = [{
|
|
handler = "reverse_proxy";
|
|
upstreams = [{ dial = "localhost:8096"; }];
|
|
}];
|
|
}];
|
|
|
|
# Create videos directory, allow anyone in Jellyfin group to manage it
|
|
systemd.tmpfiles.rules = [
|
|
"d /var/lib/jellyfin 0775 jellyfin jellyfin"
|
|
"d /var/lib/jellyfin/library 0775 jellyfin jellyfin"
|
|
];
|
|
|
|
};
|
|
|
|
}
|