From 956c23e60688ab9cb47014f5052c65b0e559c59b Mon Sep 17 00:00:00 2001 From: jay Date: Thu, 17 Jul 2025 05:11:48 -0400 Subject: [PATCH] Disable hiding bootup messages, flake update. --- flake.lock | 18 ++++++------- nodes/hosts/common/system/bootloader.nix | 32 ++++++++++++------------ 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/flake.lock b/flake.lock index 725cce8..192dc4b 100644 --- a/flake.lock +++ b/flake.lock @@ -97,11 +97,11 @@ ] }, "locked": { - "lastModified": 1752541678, - "narHash": "sha256-dyhGzkld6jPqnT/UfGV2oqe7tYn7hppAqFvF3GZTyXY=", + "lastModified": 1752718651, + "narHash": "sha256-PkaR0qmyP9q/MDN3uYa+RLeBA0PjvEQiM0rTDDBXkL8=", "owner": "nix-community", "repo": "disko", - "rev": "2bf3421f7fed5c84d9392b62dcb9d76ef09796a7", + "rev": "d5ad4485e6f2edcc06751df65c5e16572877db88", "type": "github" }, "original": { @@ -381,11 +381,11 @@ ] }, "locked": { - "lastModified": 1752631802, - "narHash": "sha256-t65TV28ZatEKVyFoTmExQgb8LECvrj/3Wuogn5PxfYI=", + "lastModified": 1752717975, + "narHash": "sha256-/yuraCMP4VsL7mQzh703y9AP0xozG4oeAZcDAyI+HAU=", "owner": "fufexan", "repo": "nix-gaming", - "rev": "b8834a847dee8875e06e218830f33a3486f0185e", + "rev": "65715ab87f085344df210c568f8c5b0000f68ab8", "type": "github" }, "original": { @@ -535,11 +535,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1752596105, - "narHash": "sha256-lFNVsu/mHLq3q11MuGkMhUUoSXEdQjCHvpReaGP1S2k=", + "lastModified": 1752683762, + "narHash": "sha256-CVC4bpthYhKk4Qb4mt00SqfJ7CJ4vfTX06pLN2OHa1c=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "dab3a6e781554f965bde3def0aa2fda4eb8f1708", + "rev": "fa64ec5c1ca6f17746f3defedb988b9248e97616", "type": "github" }, "original": { diff --git a/nodes/hosts/common/system/bootloader.nix b/nodes/hosts/common/system/bootloader.nix index f7c5d7e..035f85c 100644 --- a/nodes/hosts/common/system/bootloader.nix +++ b/nodes/hosts/common/system/bootloader.nix @@ -4,33 +4,33 @@ ]; boot = { - initrd.verbose = false; + #initrd.verbose = false; loader = { systemd-boot.enable = true; efi.canTouchEfiVariables = true; }; kernelPackages = pkgs.linuxPackages_xanmod_stable; - kernelParams = [ - "quiet" - "splash" - "boot.shell_on_fail" - "udev.log_priority=3" - "rc.systemd.show_status=auto" - ]; + #kernelParams = [ + #"quiet" + #"splash" + #"boot.shell_on_fail" + #"udev.log_priority=3" + #"rc.systemd.show_status=auto" + #]; extraModprobeConfig = '' options bluetooth enable_ecred=1 ''; - plymouth = { - enable = true; - theme = lib.mkForce "glitch"; - themePackages = [ - (pkgs.adi1090x-plymouth-themes.override { selected_themes = [ "glitch" ]; }) - ]; - }; - consoleLogLevel = 3; + #plymouth = { + # enable = true; + # theme = lib.mkForce "glitch"; + # themePackages = [ + # (pkgs.adi1090x-plymouth-themes.override { selected_themes = [ "glitch" ]; }) + # ]; + #}; + #consoleLogLevel = 3; loader.timeout = 3; }; }