From b153b908edddcc94e9d7a50b195f55d5ae4acfb2 Mon Sep 17 00:00:00 2001 From: Dmitriy Kholkin Date: Thu, 20 Feb 2025 14:46:48 +0300 Subject: [PATCH] remove quiet boot kernel param --- machines/Home-Hypervisor/boot.nix | 2 -- profiles/boot.nix | 2 +- profiles/hardened.nix | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) 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" ];