mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2026-01-02 22:29:52 +01:00
This commit is contained in:
parent
4938bed579
commit
e45ffe2fe3
1 changed files with 15 additions and 2 deletions
|
|
@ -5,15 +5,28 @@
|
||||||
{
|
{
|
||||||
boot = {
|
boot = {
|
||||||
loader = {
|
loader = {
|
||||||
timeout = 1;
|
timeout = 0;
|
||||||
systemd-boot = {
|
systemd-boot = {
|
||||||
enable = true;
|
enable = true;
|
||||||
configurationLimit = 10;
|
configurationLimit = 10;
|
||||||
consoleMode = "keep";
|
consoleMode = "max"; # needed for plymouth
|
||||||
editor = true;
|
editor = true;
|
||||||
};
|
};
|
||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
};
|
};
|
||||||
|
initrd = {
|
||||||
|
systemd.enable = true; # for a nice password prompt
|
||||||
|
verbose = false;
|
||||||
|
};
|
||||||
|
# Enable "Silent boot"
|
||||||
|
consoleLogLevel = 3;
|
||||||
|
kernelParams = [
|
||||||
|
"quiet"
|
||||||
|
"splash"
|
||||||
|
"boot.shell_on_fail"
|
||||||
|
"udev.log_priority=3"
|
||||||
|
"rd.systemd.show_status=auto"
|
||||||
|
];
|
||||||
plymouth = {
|
plymouth = {
|
||||||
enable = true;
|
enable = true;
|
||||||
theme = "framework";
|
theme = "framework";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue