diff --git a/hosts/eddie/configuration.nix b/hosts/eddie/configuration.nix index 5f49c5d..43d54fc 100644 --- a/hosts/eddie/configuration.nix +++ b/hosts/eddie/configuration.nix @@ -207,6 +207,7 @@ "nvidia_drm.fbdev=1" "nvidia_drm.modeset=1" ]; + supportedFilesystems = [ "nfs" ]; }; systemd.services.tailscaled.after = [ "NetworkManager-wait-online.service" ]; diff --git a/hosts/media-server/configuration.nix b/hosts/media-server/configuration.nix index 6b14159..b526638 100644 --- a/hosts/media-server/configuration.nix +++ b/hosts/media-server/configuration.nix @@ -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.