qt: fix theme for some apps
Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
parent
693f313e20
commit
72c6f86bb4
1 changed files with 9 additions and 2 deletions
|
@ -8,10 +8,17 @@ with lib; let
|
|||
in {
|
||||
options.custom.settings.qt.enable = mkOption {default = false;};
|
||||
|
||||
config.home-manager.users.${config.custom.username} = mkIf cfg.enable {
|
||||
config = mkIf cfg.enable {
|
||||
qt = {
|
||||
enable = true;
|
||||
platformTheme.name = "gtk3";
|
||||
style = "gtk2";
|
||||
};
|
||||
|
||||
home-manager.users.${config.custom.username} = {
|
||||
qt = {
|
||||
enable = true;
|
||||
style.name = "gtk";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue