mirror of
https://github.com/ItsDrike/nixdots
synced 2024-12-25 17:54:35 +00:00
Disable plymouth on herugrim
This commit is contained in:
parent
ac39d93be3
commit
b07310f7f4
|
@ -47,13 +47,6 @@
|
||||||
boot = {
|
boot = {
|
||||||
secure-boot.enable = true;
|
secure-boot.enable = true;
|
||||||
tmpOnTmpfs = true;
|
tmpOnTmpfs = true;
|
||||||
|
|
||||||
# Boot splash screen
|
|
||||||
plymouth = {
|
|
||||||
enable = true;
|
|
||||||
withThemes = true; # enable adi1090x/plymouth-themes
|
|
||||||
selectedTheme = "colorful_loop";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,12 @@
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.myOptions.system.boot.plymouth = {
|
options.myOptions.system.boot.plymouth = {
|
||||||
enable = mkEnableOption ''Plymouth boot splash.'';
|
enable = mkEnableOption ''
|
||||||
|
Plymouth boot splash.
|
||||||
|
|
||||||
|
Works best on devices with slower boot times, otherwise it might just appear
|
||||||
|
for a second or two, at which point it's probably not worth enabling.
|
||||||
|
'';
|
||||||
|
|
||||||
withThemes = mkEnableOption ''
|
withThemes = mkEnableOption ''
|
||||||
Whether or not themes from https://github.com/adi1090x/plymouth-themes
|
Whether or not themes from https://github.com/adi1090x/plymouth-themes
|
||||||
|
|
Loading…
Reference in a new issue