updates for media

This commit is contained in:
Matt Nish-Lapidus 2025-03-16 13:59:47 -04:00
parent def794db90
commit c3f65d7f12
2 changed files with 18 additions and 3 deletions

View file

@ -207,6 +207,7 @@
"nvidia_drm.fbdev=1"
"nvidia_drm.modeset=1"
];
supportedFilesystems = [ "nfs" ];
};
systemd.services.tailscaled.after = [ "NetworkManager-wait-online.service" ];

View file

@ -41,9 +41,23 @@
};
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.supportedFilesystems = [ "nfs" ];
boot = {
loader = {
systemd-boot = {
enable = true;
configurationLimit = 4;
};
efi.canTouchEfiVariables = true;
};
kernelPackages = pkgs.linuxPackages_latest;
kernelModules = [
"i2c-dev"
"amd_3d_vcache"
"uinput"
];
supportedFilesystems = [ "nfs" ];
};
networking.hostName = "media-server"; # Define your hostname.
# Pick only one of the below networking options.