Compare commits
3 Commits
a3e4d3c046
...
636c98ff06
| Author | SHA1 | Date | |
|---|---|---|---|
| 636c98ff06 | |||
| b82fd4370a | |||
| d92a1977fa |
@ -12,10 +12,10 @@
|
|||||||
<home-manager/nixos>
|
<home-manager/nixos>
|
||||||
|
|
||||||
# General
|
# General
|
||||||
|
./services/airsignal.nix
|
||||||
./services/authelia.nix
|
./services/authelia.nix
|
||||||
./services/gitea.nix
|
./services/gitea.nix
|
||||||
./services/gitea-runner.nix
|
./services/gitea-runner.nix
|
||||||
# ./services/gitlab.nix
|
|
||||||
./services/homepage.nix
|
./services/homepage.nix
|
||||||
./services/nginx-proxy-manager.nix
|
./services/nginx-proxy-manager.nix
|
||||||
./services/pihole.nix
|
./services/pihole.nix
|
||||||
@ -25,6 +25,7 @@
|
|||||||
./services/wireguard-vps.nix
|
./services/wireguard-vps.nix
|
||||||
|
|
||||||
# Multimedia
|
# Multimedia
|
||||||
|
./services/bazarr.nix
|
||||||
./services/fileflows.nix
|
./services/fileflows.nix
|
||||||
./services/jellyfin.nix
|
./services/jellyfin.nix
|
||||||
./services/jellyseerr.nix
|
./services/jellyseerr.nix
|
||||||
|
|||||||
26
ServeNix/services/airsignal.nix
Normal file
26
ServeNix/services/airsignal.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
virtualisation.oci-containers.containers.airsignal = {
|
||||||
|
image = "gitea.vps.chriphost.de/christoph/airsignal:latest";
|
||||||
|
autoStart = true;
|
||||||
|
|
||||||
|
dependsOn = [];
|
||||||
|
|
||||||
|
ports = [
|
||||||
|
"12776:12776"
|
||||||
|
"12776:12776/udp"
|
||||||
|
];
|
||||||
|
|
||||||
|
volumes = [];
|
||||||
|
|
||||||
|
environment = {};
|
||||||
|
|
||||||
|
extraOptions = [
|
||||||
|
"--net=behind-nginx"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
33
ServeNix/services/bazarr.nix
Normal file
33
ServeNix/services/bazarr.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
virtualisation.oci-containers.containers.bazarr = {
|
||||||
|
image = "linuxserver/bazarr:latest";
|
||||||
|
autoStart = true;
|
||||||
|
|
||||||
|
dependsOn = [];
|
||||||
|
|
||||||
|
ports = [
|
||||||
|
# "6767:6767"
|
||||||
|
];
|
||||||
|
|
||||||
|
volumes = [
|
||||||
|
"bazarr_config:/config"
|
||||||
|
"/media/Show:/tv"
|
||||||
|
"/media/Movie:/movies"
|
||||||
|
];
|
||||||
|
|
||||||
|
environment = {
|
||||||
|
PUID = "3000";
|
||||||
|
PGID = "3000";
|
||||||
|
TZ = "Europe/Berlin";
|
||||||
|
};
|
||||||
|
|
||||||
|
extraOptions = [
|
||||||
|
"--net=behind-nginx"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user