Move Jellyfin into Proxmox

This commit is contained in:
Greg Hellings
2025-04-17 22:42:18 -05:00
parent 39b71456e0
commit 6437126eac
2 changed files with 46 additions and 4 deletions
+9 -4
View File
@@ -1,9 +1,17 @@
{ lib, ... }:
{
boot.loader.grub.devices = [ "/dev/disk/by-label/ESP" ];
imports = [ ./hardware-configuration.nix ];
# Bootloader.
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
greg = {
home = true;
proxies."jellyfin.home".target = "http://localhost:8096/";
proxies."jellyfin.thehellings.lan".target = "http://localhost:8096/";
tailscale.enable = true;
@@ -33,7 +41,6 @@
networking = {
hostName = "vm-jellyfin";
domain = lib.mkForce null; # The proxmox generator fails at this, somehow
};
services = {
@@ -43,6 +50,4 @@
};
qemuGuest.enable = true;
};
virtualisation.diskSize = 20 * 1024;
}