Compare commits

...

2 commits

Author SHA1 Message Date
5141f0bcf3 Default: enable plymouth 2023-10-25 00:16:27 +02:00
6114bddb91 Archie: load amdgpu module in initrd 2023-10-24 23:25:21 +02:00
2 changed files with 2 additions and 1 deletions

View file

@ -12,7 +12,7 @@
hardware.xone.enable = true; hardware.xone.enable = true;
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelModules = [ "kvm-amd" ]; boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];

View file

@ -13,4 +13,5 @@
( pkgs.nerdfonts.override { fonts = [ "Hack" "JetBrainsMono" ]; } ) ( pkgs.nerdfonts.override { fonts = [ "Hack" "JetBrainsMono" ]; } )
]; ];
boot.plymouth.enable = true;
} }