Make Jellyfin compatible with Proxmox

This commit is contained in:
Greg Hellings
2024-11-25 13:57:47 -06:00
parent daee380cdf
commit edae9d8093
2 changed files with 13 additions and 7 deletions
+10 -6
View File
@@ -1,7 +1,6 @@
{ ... }:
{ lib, ... }:
{
imports = [ ];
boot.loader.grub.devices = [ "/dev/disk/by-label/ESP" ];
greg = {
@@ -33,11 +32,16 @@
networking = {
hostName = "vm-jellyfin";
domain = "thehellings.lan";
domain = lib.mkForce null; # The proxmox generator fails at this, somehow
};
services.jellyfin = {
enable = true;
openFirewall = true;
services = {
jellyfin = {
enable = true;
openFirewall = true;
};
qemuGuest.enable = true;
};
virtualisation.diskSize = 20 * 1024;
}