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;
|
kernelPackages = lib.mkOverride 0 pkgs.linuxPackages_latest;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
# Configure console keymap
|
# Configure console keymap
|
||||||
console.keyMap = "us";
|
console.keyMap = "us";
|
||||||
i18n.extraLocaleSettings = {
|
i18n.extraLocaleSettings = {
|
||||||
|
|
|
@ -4,14 +4,21 @@
|
||||||
{ config, lib, pkgs, modulesPath, ... }:
|
{ config, lib, pkgs, modulesPath, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports = [
|
||||||
[
|
|
||||||
(modulesPath + "/installer/scan/not-detected.nix")
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "uas" "usbhid" "sd_mod" ];
|
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "uas" "usbhid" "sd_mod" ];
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
boot.kernelModules = [ "kvm-intel" ];
|
||||||
|
boot.kernelParams = [
|
||||||
|
"lockdown=confidentiality"
|
||||||
|
"intel_iommu=on"
|
||||||
|
"quiet"
|
||||||
|
"splash"
|
||||||
|
"video=efifb:nobgrt"
|
||||||
|
];
|
||||||
|
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" =
|
||||||
|
|
Loading…
Reference in a new issue