gtk: fixed stuff

This commit is contained in:
Charlie Root 2024-08-15 23:59:00 +02:00
commit 2d98ccfdb5
4 changed files with 16 additions and 21 deletions

View file

@ -4,9 +4,9 @@
...
}:
with lib; let
cfg = config.modules.theming.gtk;
cfg = config.modules.usrEnv.style.gtk;
inherit (config.modules.other.system) username;
inherit (config.modules.style.gtk) theme iconTheme;
inherit (config.modules.usrEnv.style.gtk) theme iconTheme;
in {
config = mkIf cfg.enable {
home-manager.users.${username} = {
@ -16,7 +16,7 @@ in {
inherit (theme) name package;
};
iconTheme = {
inherit (iconTheme) name Package;
inherit (iconTheme) name package;
};
};
};