This commit is contained in:
2026-03-05 23:12:21 +01:00
parent c2e6b35207
commit 37ef45284e
7 changed files with 138 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
{ ... }: {
flake.nixosModules.computer-nadine = { system, ... }: {
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "ahci" "usbhid" "usb_storage" "sd_mod" ];
boot.kernelParams = [ "quiet" "splash" "boot.shell_on_fail" "loglevel=3" "rd.systemd.show_status=false" "rd.udev.log_level=3" "udev.log_priority=3" ];
nixpkgs.hostPlatform = system;
hardware.cpu.amd.updateMicrocode = true;
};
}