kernel command line parms
Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
This commit is contained in:
parent
ab7e49581a
commit
ee0e15b368
|
@ -42,6 +42,7 @@ with lib.plusultra;
|
|||
kernelPackages = lib.mkOverride 0 pkgs.linuxPackages_latest;
|
||||
};
|
||||
|
||||
|
||||
# Configure console keymap
|
||||
console.keyMap = "us";
|
||||
i18n.extraLocaleSettings = {
|
||||
|
|
|
@ -4,14 +4,21 @@
|
|||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
imports = [
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "uas" "usbhid" "sd_mod" ];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.kernelParams = [
|
||||
"lockdown=confidentiality"
|
||||
"intel_iommu=on"
|
||||
"quiet"
|
||||
"splash"
|
||||
"video=efifb:nobgrt"
|
||||
];
|
||||
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
|
|
Loading…
Reference in a new issue