Add plex node with tautulli and Ombi

This commit is contained in:
pazpi 2024-12-24 15:08:14 +01:00
parent 991b9d4b4f
commit 1d7dd28eed
5 changed files with 105 additions and 8 deletions

40
hosts/plex/default.nix Normal file
View file

@ -0,0 +1,40 @@
{
config,
pkgs,
lib,
...
}:
{
my = {
utils.commons.enable = true;
services.plex = {
enable = true;
tautulli.enable = true;
ombi.enable = true;
};
networking.nas-samba-share = {
enable = true;
allowUsers = [ config.my.services.plex.user ];
};
virtualisation.proxmox.enable = true;
};
time.timeZone = "Europe/Rome";
# Extra packages
environment.systemPackages = with pkgs; [ ];
services = {
openssh.enable = true;
};
networking = {
# firewall.allowedTCPPorts = [ 80 ];
nameservers = [ "192.168.1.2" ];
};
system.stateVersion = "24.11";
}