Disable hiding bootup messages, flake update.
This commit is contained in:
18
flake.lock
generated
18
flake.lock
generated
@@ -97,11 +97,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1752541678,
|
"lastModified": 1752718651,
|
||||||
"narHash": "sha256-dyhGzkld6jPqnT/UfGV2oqe7tYn7hppAqFvF3GZTyXY=",
|
"narHash": "sha256-PkaR0qmyP9q/MDN3uYa+RLeBA0PjvEQiM0rTDDBXkL8=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "disko",
|
"repo": "disko",
|
||||||
"rev": "2bf3421f7fed5c84d9392b62dcb9d76ef09796a7",
|
"rev": "d5ad4485e6f2edcc06751df65c5e16572877db88",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -381,11 +381,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1752631802,
|
"lastModified": 1752717975,
|
||||||
"narHash": "sha256-t65TV28ZatEKVyFoTmExQgb8LECvrj/3Wuogn5PxfYI=",
|
"narHash": "sha256-/yuraCMP4VsL7mQzh703y9AP0xozG4oeAZcDAyI+HAU=",
|
||||||
"owner": "fufexan",
|
"owner": "fufexan",
|
||||||
"repo": "nix-gaming",
|
"repo": "nix-gaming",
|
||||||
"rev": "b8834a847dee8875e06e218830f33a3486f0185e",
|
"rev": "65715ab87f085344df210c568f8c5b0000f68ab8",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -535,11 +535,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1752596105,
|
"lastModified": 1752683762,
|
||||||
"narHash": "sha256-lFNVsu/mHLq3q11MuGkMhUUoSXEdQjCHvpReaGP1S2k=",
|
"narHash": "sha256-CVC4bpthYhKk4Qb4mt00SqfJ7CJ4vfTX06pLN2OHa1c=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "dab3a6e781554f965bde3def0aa2fda4eb8f1708",
|
"rev": "fa64ec5c1ca6f17746f3defedb988b9248e97616",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|||||||
@@ -4,33 +4,33 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
initrd.verbose = false;
|
#initrd.verbose = false;
|
||||||
loader = {
|
loader = {
|
||||||
systemd-boot.enable = true;
|
systemd-boot.enable = true;
|
||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
kernelPackages = pkgs.linuxPackages_xanmod_stable;
|
kernelPackages = pkgs.linuxPackages_xanmod_stable;
|
||||||
kernelParams = [
|
#kernelParams = [
|
||||||
"quiet"
|
#"quiet"
|
||||||
"splash"
|
#"splash"
|
||||||
"boot.shell_on_fail"
|
#"boot.shell_on_fail"
|
||||||
"udev.log_priority=3"
|
#"udev.log_priority=3"
|
||||||
"rc.systemd.show_status=auto"
|
#"rc.systemd.show_status=auto"
|
||||||
];
|
#];
|
||||||
|
|
||||||
extraModprobeConfig = ''
|
extraModprobeConfig = ''
|
||||||
options bluetooth enable_ecred=1
|
options bluetooth enable_ecred=1
|
||||||
'';
|
'';
|
||||||
|
|
||||||
plymouth = {
|
#plymouth = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
theme = lib.mkForce "glitch";
|
# theme = lib.mkForce "glitch";
|
||||||
themePackages = [
|
# themePackages = [
|
||||||
(pkgs.adi1090x-plymouth-themes.override { selected_themes = [ "glitch" ]; })
|
# (pkgs.adi1090x-plymouth-themes.override { selected_themes = [ "glitch" ]; })
|
||||||
];
|
# ];
|
||||||
};
|
#};
|
||||||
consoleLogLevel = 3;
|
#consoleLogLevel = 3;
|
||||||
loader.timeout = 3;
|
loader.timeout = 3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user