Skip to content

Commit

Permalink
feat(boot): add plymouth
Browse files Browse the repository at this point in the history
  • Loading branch information
yunfachi committed Aug 1, 2024
1 parent 94c77bb commit d5c7146
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions modules/config/boot.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
module-functions,
lib,
pkgs,
...
}:
module-functions.module null "boot" (cfg: {
Expand All @@ -14,5 +15,12 @@ module-functions.module null "boot" (cfg: {
"udev.log_priority=3"
];
consoleLogLevel = lib.mkIf cfg.silent 0;

plymouth = {
enable = true;

themePackages = with pkgs; [adi1090x-plymouth-themes];
theme = "cubes";
};
};
})

0 comments on commit d5c7146

Please sign in to comment.