feat(amd): add kernel parameters for boot configuration

- Added `lockdown=confidentiality`, `quiet`, `splash`, `video=efifb:nobgrt`, and `mitigations=off` to `boot.kernelParams` for improved boot behavior.
- Enhances security, reduces verbosity, and
This commit is contained in:
Harald Hoyer 2026-01-19 09:13:58 +01:00
parent ee04de2655
commit 8ea3c78aa0

View file

@ -26,6 +26,14 @@
boot.kernelModules = [ "kvm-amd" ]; boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
boot.kernelParams = [
"lockdown=confidentiality"
"quiet"
"splash"
"video=efifb:nobgrt"
"mitigations=off"
];
fileSystems."/" = { fileSystems."/" = {
device = "/dev/disk/by-uuid/050c9912-36c3-4a65-ba8b-ba68e5171e18"; device = "/dev/disk/by-uuid/050c9912-36c3-4a65-ba8b-ba68e5171e18";
fsType = "ext4"; fsType = "ext4";