initial commit x2
This commit is contained in:
29
system/boot.nix
Normal file
29
system/boot.nix
Normal file
@@ -0,0 +1,29 @@
|
||||
{ config, pkgs, ... }: {
|
||||
boot = {
|
||||
kernelPackages = pkgs.linuxPackages_zen;
|
||||
kernelModules = [ "kvm-intel" ];
|
||||
kernelParams = [ "quiet" "splash" ];
|
||||
blacklistedKernelModules = [ "nouveau" ];
|
||||
consoleLogLevel = 3;
|
||||
initrd = {
|
||||
availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "uas" "sd_mod" "sdhci_pci" ];
|
||||
kernelModules = [ "i915" ];
|
||||
verbose = false;
|
||||
};
|
||||
loader = {
|
||||
timeout = 7;
|
||||
efi = {
|
||||
canTouchEfiVariables = true;
|
||||
efiSysMountPoint = "/boot";
|
||||
};
|
||||
grub = {
|
||||
efiSupport = true;
|
||||
device = "nodev";
|
||||
};
|
||||
};
|
||||
plymouth = {
|
||||
enable = true;
|
||||
theme = "bgrt";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user