quiet-boot: graphical LUKS prompt, catppuccin theme
This commit is contained in:
parent
67f2675c7d
commit
02c5171e04
2 changed files with 17 additions and 2 deletions
|
|
@ -1,11 +1,25 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
boot = {
|
boot = {
|
||||||
kernelParams = [
|
kernelParams = [
|
||||||
"quiet"
|
"quiet"
|
||||||
"udev.log_level=3"
|
"udev.log_level=3"
|
||||||
|
"udev.log_priority=3"
|
||||||
|
"rd.systemd.show_status=auto"
|
||||||
];
|
];
|
||||||
consoleLogLevel = 0;
|
consoleLogLevel = 0;
|
||||||
initrd.verbose = false;
|
initrd = {
|
||||||
plymouth.enable = true;
|
verbose = false;
|
||||||
|
systemd.enable = true; # required fpr graphical LUKS prompt
|
||||||
|
};
|
||||||
|
plymouth = {
|
||||||
|
enable = true;
|
||||||
|
theme = "catppuccin-mocha";
|
||||||
|
themePackages = [
|
||||||
|
(pkgs.catppuccin-plymouth.override {
|
||||||
|
variant = "mocha";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@
|
||||||
gtk.enable = false;
|
gtk.enable = false;
|
||||||
gtksourceview.enable = false;
|
gtksourceview.enable = false;
|
||||||
fontconfig.enable = true;
|
fontconfig.enable = true;
|
||||||
|
plymouth.enable = false;
|
||||||
};
|
};
|
||||||
fonts = {
|
fonts = {
|
||||||
sansSerif = {
|
sansSerif = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue