From c022070323fc88c088fed47065e09c5448a35eba Mon Sep 17 00:00:00 2001 From: materus Date: Sat, 6 Apr 2024 18:51:08 +0200 Subject: [PATCH] materusPC: change boot settings --- configurations/host/materusPC/hardware/boot.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/configurations/host/materusPC/hardware/boot.nix b/configurations/host/materusPC/hardware/boot.nix index 2b0c254..c7a97b2 100644 --- a/configurations/host/materusPC/hardware/boot.nix +++ b/configurations/host/materusPC/hardware/boot.nix @@ -30,9 +30,9 @@ in boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" ]; - boot.initrd.kernelModules = [ ]; + boot.initrd.kernelModules = [ "amdgpu" ]; - boot.extraModulePackages = with config.boot.kernelPackages; [ /*v4l2loopback*/ ]; + boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ]; boot.supportedFilesystems = [ "ntfs" "btrfs" "vfat" "exfat" "ext4" ]; @@ -53,5 +53,7 @@ in memtest86.enable = true; }; + boot.plymouth.enable = true; + boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; }