services: init arrstack
This commit is contained in:
parent
78b98fa927
commit
90b67b6c3e
8 changed files with 45 additions and 1 deletions
7
modules/services/arr/default.nix
Normal file
7
modules/services/arr/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{...}: {
|
||||||
|
imports = [
|
||||||
|
./sonarr.nix
|
||||||
|
./radarr.nix
|
||||||
|
./prowlarr.nix
|
||||||
|
];
|
||||||
|
}
|
6
modules/services/arr/prowlarr.nix
Normal file
6
modules/services/arr/prowlarr.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{...}: {
|
||||||
|
services.prowlarr = {
|
||||||
|
enable = true;
|
||||||
|
openFirewall = true;
|
||||||
|
};
|
||||||
|
}
|
7
modules/services/arr/radarr.nix
Normal file
7
modules/services/arr/radarr.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{...}: {
|
||||||
|
services.radarr = {
|
||||||
|
enable = true;
|
||||||
|
openFirewall = true;
|
||||||
|
dataDir = "/home/notoh/radarr";
|
||||||
|
};
|
||||||
|
}
|
7
modules/services/arr/sonarr.nix
Normal file
7
modules/services/arr/sonarr.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{...}: {
|
||||||
|
services.sonarr = {
|
||||||
|
enable = true;
|
||||||
|
openFirewall = true;
|
||||||
|
dataDir = "/home/notoh/sonarr";
|
||||||
|
};
|
||||||
|
}
|
|
@ -7,5 +7,6 @@
|
||||||
./stash.nix
|
./stash.nix
|
||||||
./foundryvtt.nix
|
./foundryvtt.nix
|
||||||
./forgejo.nix
|
./forgejo.nix
|
||||||
|
./jellyfin.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{config, ...}: {
|
{...}: {
|
||||||
virtualisation.oci-containers.containers.homepage = {
|
virtualisation.oci-containers.containers.homepage = {
|
||||||
image = "ghcr.io/benphelps/homepage";
|
image = "ghcr.io/benphelps/homepage";
|
||||||
volumes = [
|
volumes = [
|
||||||
|
|
10
modules/services/jellyfin.nix
Normal file
10
modules/services/jellyfin.nix
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{...}: {
|
||||||
|
services.jellyfin = {
|
||||||
|
enable = true;
|
||||||
|
openFirewall = true;
|
||||||
|
};
|
||||||
|
services.jellyseerr = {
|
||||||
|
enable = true;
|
||||||
|
openFirewall = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -19,6 +19,7 @@
|
||||||
searxng.loadBalancer.servers = [{url = "http://localhost:8085";}];
|
searxng.loadBalancer.servers = [{url = "http://localhost:8085";}];
|
||||||
hugo.loadBalancer.servers = [{url = "http://localhost:1313";}];
|
hugo.loadBalancer.servers = [{url = "http://localhost:1313";}];
|
||||||
stash.loadBalancer.servers = [{url = "http://localhost:9999";}];
|
stash.loadBalancer.servers = [{url = "http://localhost:9999";}];
|
||||||
|
jellyfin.loadBalancer.servers = [{url = "http://localhost:8096";}];
|
||||||
foundryvtt.loadBalancer.servers = [{url = "http://localhost:30000";}];
|
foundryvtt.loadBalancer.servers = [{url = "http://localhost:30000";}];
|
||||||
gitea.loadBalancer.servers = [{url = "http://localhost:3000";}];
|
gitea.loadBalancer.servers = [{url = "http://localhost:3000";}];
|
||||||
};
|
};
|
||||||
|
@ -43,6 +44,11 @@
|
||||||
entrypoints = ["web"];
|
entrypoints = ["web"];
|
||||||
service = "stash";
|
service = "stash";
|
||||||
};
|
};
|
||||||
|
jellyfin = {
|
||||||
|
rule = "Host(`jellyfin.lab`)";
|
||||||
|
entrypoints = ["web"];
|
||||||
|
service = "jellyfin";
|
||||||
|
};
|
||||||
hugo = {
|
hugo = {
|
||||||
rule = "Host(`notohh.dev`)";
|
rule = "Host(`notohh.dev`)";
|
||||||
entryPoints = ["websecure"];
|
entryPoints = ["websecure"];
|
||||||
|
|
Loading…
Reference in a new issue