diff --git a/machines/Home-Hypervisor/boot.nix b/machines/Home-Hypervisor/boot.nix index 3614a51..e2215dc 100644 --- a/machines/Home-Hypervisor/boot.nix +++ b/machines/Home-Hypervisor/boot.nix @@ -56,9 +56,7 @@ in { kernelParams = [ "zfs.zfs_arc_max=${zfs_arc_max}" "zswap.enabled=0" - "quiet" "scsi_mod.use_blk_mq=1" - "modeset" "nofb" "pti=off" "spectre_v2=off" diff --git a/profiles/boot.nix b/profiles/boot.nix index 07caa60..e456251 100644 --- a/profiles/boot.nix +++ b/profiles/boot.nix @@ -35,7 +35,7 @@ with config.deviceSpecific; { }; kernelParams = - [ "zswap.enabled=0" "quiet" "scsi_mod.use_blk_mq=1" "modeset" "nofb" ] + [ "zswap.enabled=0" "scsi_mod.use_blk_mq=1" "nofb" ] ++ lib.optionals (pkgs.hostPlatform.system == "x86_64-linux") [ "rd.systemd.show_status=auto" "rd.udev.log_priority=3" diff --git a/profiles/hardened.nix b/profiles/hardened.nix index a8defaf..333e310 100644 --- a/profiles/hardened.nix +++ b/profiles/hardened.nix @@ -37,7 +37,7 @@ "lockdown=confidentiality" "module.sig_enforce=1" "oops=panic" - "quiet" "loglevel=0" + "loglevel=0" "slab_nomerge" "vsyscall=none" ];