mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 04:59:42 +00:00
29 lines
632 B
Nix
29 lines
632 B
Nix
|
{ config, lib, pkgs, ...}: let
|
||
|
inherit (lib) mkIf;
|
||
|
cfg = config.myOptions.system.boot.plymouth;
|
||
|
in {
|
||
|
config = mkIf cfg.enable {
|
||
|
boot.plymouth = {
|
||
|
enable = true;
|
||
|
theme = cfg.selectedTheme;
|
||
|
}
|
||
|
// lib.optionalAttrs cfg.withThemes {
|
||
|
themePackages = [
|
||
|
(pkgs.adi1090x-plymouth-themes.override {
|
||
|
selected_themes = [ cfg.selectedTheme ];
|
||
|
})
|
||
|
];
|
||
|
};
|
||
|
|
||
|
# Make polymouth work with sleep
|
||
|
powerManagement = {
|
||
|
powerDownCommands = ''
|
||
|
${pkgs.plymouth} --show-splash
|
||
|
'';
|
||
|
resumeCommands = ''
|
||
|
${pkgs.plymouth} --quit
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|