mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 23:59:07 +02:00
9 lines
412 B
Nix
9 lines
412 B
Nix
{ ... }: {
|
|
flake.nixosModules.computer-deck = { 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;
|
|
};
|
|
}
|