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 | 3fce4b050912583feddbbe41f140102d0b698509 (patch) | |
| tree | f33121dab595945590cdf30f53d1aaab3fbdffc4 /hosts | |
| parent | Luna: Enable early KMS (diff) | |
| download | nixos-config-3fce4b050912583feddbbe41f140102d0b698509.tar.gz nixos-config-3fce4b050912583feddbbe41f140102d0b698509.tar.bz2 nixos-config-3fce4b050912583feddbbe41f140102d0b698509.zip | |
Disable mitigations
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/luna/hardware.nix | 2 | ||||
| -rw-r--r-- | hosts/phobos/hardware.nix | 2 | ||||
| -rw-r--r-- | hosts/vm/hardware.nix | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/hosts/luna/hardware.nix b/hosts/luna/hardware.nix index ebb8f54..afd206a 100644 --- a/hosts/luna/hardware.nix +++ b/hosts/luna/hardware.nix @@ -12,7 +12,7 @@ in }; kernelModules = [ "kvm_intel" ]; extraModulePackages = [ ]; - kernelParams = [ "net.ifnames=0" "biosdevname=0" "iomem=relaxed" ]; + kernelParams = [ "net.ifnames=0" "biosdevname=0" "iomem=relaxed" "mitigations=off" ]; }; fileSystems."/boot" = { diff --git a/hosts/phobos/hardware.nix b/hosts/phobos/hardware.nix index e01c237..4833668 100644 --- a/hosts/phobos/hardware.nix +++ b/hosts/phobos/hardware.nix @@ -12,7 +12,7 @@ in }; kernelModules = [ "kvm_intel" ]; extraModulePackages = [ ]; - kernelParams = [ "net.ifnames=0" "biosdevname=0" "iomem=relaxed" ]; + kernelParams = [ "net.ifnames=0" "biosdevname=0" "iomem=relaxed" "mitigations=off" ]; }; fileSystems."/boot" = { 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" = { |