nix/hosts/plex/default.nix

32 lines
498 B
Nix

{
config,
pkgs,
lib,
...
}:
{
my = {
utils = {
commons.enable = true;
lxc-standard.enable = true;
};
services.plex = {
enable = true;
tautulli.enable = true;
ombi.enable = true;
};
networking.lxc_shares = {
enable = true;
allowUsers = [ config.services.plex.user ];
};
virtualisation.proxmox.enable = true;
};
# Extra packages
environment.systemPackages = with pkgs; [ ];
system.stateVersion = "24.11";
}