mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-23 02:15:38 +00:00
36 lines
814 B
Nix
36 lines
814 B
Nix
{ config, lib, ... }: {
|
|
|
|
options = {
|
|
streamServer = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "Hostname for Jellyfin library";
|
|
};
|
|
};
|
|
|
|
config = {
|
|
|
|
services.jellyfin.enable = true;
|
|
|
|
caddyRoutes = [{
|
|
match = [{ host = [ config.streamServer ]; }];
|
|
handle = [{
|
|
handler = "reverse_proxy";
|
|
upstreams = [{ dial = "localhost:8096"; }];
|
|
}];
|
|
}];
|
|
|
|
# Create videos directory, allow anyone in Jellyfin group to manage it
|
|
system.activationScripts.jellyfin = let videosDirectory = "/var/videos";
|
|
in {
|
|
text = ''
|
|
if [ ! -d "${videosDirectory}" ]; then
|
|
$DRY_RUN_CMD mkdir --parents $VERBOSE_ARG ${videosDirectory}
|
|
$DRY_RUN_CMD chmod 775 $VERBOSE_ARG ${videosDirectory}
|
|
fi
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
}
|