Disable hiding bootup messages, flake update.

This commit is contained in:
jay
2025-07-17 05:11:48 -04:00
parent f40f23a8b3
commit 956c23e606
2 changed files with 25 additions and 25 deletions

18
flake.lock generated
View File

@@ -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": {

View File

@@ -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;
};
}