-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ec0a8f
commit f4a837b
Showing
17 changed files
with
287 additions
and
352 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ config, lib, pkgs, ... }: | ||
{ | ||
# Enable "Silent Boot" | ||
# - Note: Required for Plymouth bootsplash? | ||
boot = { | ||
# Hide the OS choice for bootloaders. | ||
# It's still possible to open the bootloader list by pressing any key | ||
# It will just not appear on screen unless a key is pressed | ||
loader.timeout = 0; | ||
|
||
# Lowest boot console log level | ||
consoleLogLevel = 0; | ||
|
||
# Minimal info to console in initrd | ||
initrd.verbose = false; | ||
|
||
kernelParams = [ | ||
"quiet" | ||
"splash" | ||
"boot.shell_on_fail" | ||
"loglevel=3" | ||
"rd.systemd.show_status=false" | ||
"rd.udev.log_level=3" | ||
"udev.log_priority=3" | ||
|
||
# -- plymouth.nix --- | ||
# These params were previously enabled in ./plymouth.nix, | ||
# but weren't in wiki page on quiet boot / Plymouth, so we removed them. | ||
# | ||
#"systemd.show_status=auto" | ||
#"udev.log_level=3" | ||
#"vt.global_cursor_default=0" | ||
]; | ||
}; | ||
} |
Oops, something went wrong.