idk some stuff, mostly 25.11 and opencode stuff
This commit is contained in:
@@ -1,4 +1,9 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
services.jackett = {
|
||||
enable = true;
|
||||
@@ -17,9 +22,9 @@
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
services.lidarr = {
|
||||
enable = true;
|
||||
user = "headphones";
|
||||
group = "audio";
|
||||
};
|
||||
services.nginx.virtualHosts."lidarr.mossnet.lan" = {
|
||||
@@ -32,4 +37,35 @@
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
services.sonarr = {
|
||||
enable = true;
|
||||
group = "video";
|
||||
};
|
||||
services.nginx.virtualHosts."sonarr.mossnet.lan" = {
|
||||
enableACME = false;
|
||||
forceSSL = false;
|
||||
|
||||
locations."/" = {
|
||||
extraConfig = ''
|
||||
proxy_pass http://127.0.0.1:8989/;
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
services.jellyseerr = {
|
||||
enable = true;
|
||||
# group = "video";
|
||||
};
|
||||
services.nginx.virtualHosts."seerr.mossnet.lan" = {
|
||||
enableACME = false;
|
||||
forceSSL = false;
|
||||
|
||||
locations."/" = {
|
||||
extraConfig = ''
|
||||
proxy_pass http://127.0.0.1:5055/;
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user