nixcfg/modules/homelab/default.nix

84 lines
2.5 KiB
Nix
Raw Normal View History

{ config, pkgs, ... }:
2024-03-05 11:47:33 -05:00
{
imports = [
./virtualization
./reverse_proxy
];
2024-03-10 23:48:07 -04:00
# services.ddclient.enable = true;
# services.ddclient.configFile = "/etc/ddclient/ddclient.conf";
# Open TCP ports for transmission-server.
networking.firewall.allowedTCPPorts = [ 51413 9091 ];
2024-03-06 22:28:48 -05:00
networking.firewall.allowedUDPPorts = [ 51413 ];
virtualisation.oci-containers.containers = {
audiobookshelf = {
ports = ["0.0.0.0:13378:80"];
image = "ghcr.io/advplyr/audiobookshelf:latest";
2024-03-11 18:43:25 -04:00
environment = { TZ = "America/New_York"; };
volumes = [
"abs_config:/config"
"abs_metadata:/metadata"
"/mnt/Media:/Media"
];
};
plex-server = {
ports = ["0.0.0.0:32400:32400"];
image = "plexinc/pms-docker:public";
2024-03-11 18:43:25 -04:00
environment = { TZ = "America/New_York"; };
volumes = [
"plex_config:/config"
"plex_transcode:/transcode"
"/mnt/Media:/Media"
];
};
transmission-server = {
ports = ["0.0.0.0:9091:9091" "0.0.0.0:51413:51413"];
image = "linuxserver/transmission:latest";
2024-03-11 18:43:25 -04:00
environment = { TZ = "America/New_York"; };
volumes = [
"transmission_config:/config"
"/mnt/Media/Torrents:/watch"
"/mnt/Media:/Media"
];
2024-03-10 23:48:07 -04:00
};
2024-03-12 18:43:35 -04:00
jellyfin = {
ports = ["0.0.0.0:8096:8096"];
image = "jellyfin/jellyfin";
environment = { TZ = "America/New_York"; };
volumes = [
"jellyfin_config:/config"
"jellyfin_cache:/cache"
"/mnt/Media:/Media"
];
};
2024-03-10 23:48:07 -04:00
};
containers.navidrome = {
autoStart = true;
bindMounts."/Music".hostPath = "/mnt/Media/Music";
2024-03-10 23:48:07 -04:00
config = { config, pkgs, lib, ... }: {
system.stateVersion = "24.05";
2024-03-10 23:48:07 -04:00
services.navidrome = {
enable = true;
openFirewall = true;
settings = {
Address = "0.0.0.0";
Port = 4533;
MusicFolder = "/Music";
DefaultTheme = "Auto";
SubsonicArtistParticipations = true;
2024-03-11 18:38:31 -04:00
UIWelcomeMessage = "Welcome to Navidrome on Raffauf Labs.";
2024-03-10 23:48:07 -04:00
};
};
};
};
2024-03-12 20:17:14 -04:00
services.sonarr = {
enable = true;
openFirewall = true;
};
2024-03-05 11:47:33 -05:00
}