Skip to content

Commit d5c7146

Browse files
committed
feat(boot): add plymouth
1 parent 94c77bb commit d5c7146

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

modules/config/boot.nix

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
module-functions,
33
lib,
4+
pkgs,
45
...
56
}:
67
module-functions.module null "boot" (cfg: {
@@ -14,5 +15,12 @@ module-functions.module null "boot" (cfg: {
1415
"udev.log_priority=3"
1516
];
1617
consoleLogLevel = lib.mkIf cfg.silent 0;
18+
19+
plymouth = {
20+
enable = true;
21+
22+
themePackages = with pkgs; [adi1090x-plymouth-themes];
23+
theme = "cubes";
24+
};
1725
};
1826
})

0 commit comments

Comments
 (0)