22 lines
335 B
Nix
22 lines
335 B
Nix
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}: let
|
||
|
cfg = config.local.style;
|
||
|
in {
|
||
|
config.programs.regreet = lib.mkIf cfg.enable {
|
||
|
theme = {
|
||
|
inherit (cfg.gtk.theme) name package;
|
||
|
};
|
||
|
|
||
|
cursorTheme = {
|
||
|
inherit (cfg.cursorTheme) name package;
|
||
|
};
|
||
|
|
||
|
iconTheme = {
|
||
|
inherit (cfg.gtk.iconTheme) name package;
|
||
|
};
|
||
|
};
|
||
|
}
|