diff options
| author | Baitinq <[email protected]> | 2022-07-25 17:45:26 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-07-25 17:45:26 +0200 |
| commit | 723e5ac42460ccc248827ca7bebdee6004ad68c9 (patch) | |
| tree | 85369d26e3cb713b76f9809e0b24738ec9f68a77 /hosts/vm | |
| parent | Luna: Enable early KMS (diff) | |
| download | nixos-config-723e5ac42460ccc248827ca7bebdee6004ad68c9.tar.gz nixos-config-723e5ac42460ccc248827ca7bebdee6004ad68c9.tar.bz2 nixos-config-723e5ac42460ccc248827ca7bebdee6004ad68c9.zip | |
Disable mitigations
Diffstat (limited to 'hosts/vm')
| -rw-r--r-- | hosts/vm/hardware.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/vm/hardware.nix b/hosts/vm/hardware.nix index d7965d5..393afa5 100644 --- a/hosts/vm/hardware.nix +++ b/hosts/vm/hardware.nix @@ -10,7 +10,7 @@ }; kernelModules = [ ]; extraModulePackages = [ ]; - kernelParams = [ "net.ifnames=0" "biosdevname=0" ]; + kernelParams = [ "net.ifnames=0" "biosdevname=0" "mitigations=off" ]; }; fileSystems."/boot" = { |