mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
14 lines
286 B
Nix
14 lines
286 B
Nix
_: {
|
|
boot = {
|
|
plymouth = {
|
|
enable = true;
|
|
};
|
|
consoleLogLevel = 0;
|
|
kernelParams = ["quiet"];
|
|
initrd = {
|
|
verbose = false;
|
|
systemd.enable = true;
|
|
availableKernelModules = ["nvme" "xhci_pci" "thunderbolt" "usb_storage" "sd_mod"];
|
|
};
|
|
};
|
|
}
|