Small refactor and added prowlarr
This commit is contained in:
parent
7f901a2938
commit
177ebd2350
15 changed files with 76 additions and 88 deletions
26
nixos/server/package-configs/jellyfin/configuration.nix
Normal file
26
nixos/server/package-configs/jellyfin/configuration.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
inputs,
|
||||
outputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
users.users.jellyfin.extraGroups = ["nextcloud"];
|
||||
|
||||
services.nginx = {
|
||||
virtualHosts = {
|
||||
"video.gladtherescake.eu" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://localhost:8096";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
services.jellyfin = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue