23 lines
396 B
Nix
23 lines
396 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
config = lib.mkIf config.modules.system.roles.desktop.enable {
|
|
qt = {
|
|
enable = true;
|
|
platformTheme = "gtk2";
|
|
#platformTheme = "qt5ct";
|
|
#style = "kvantum";
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
#vimix-icon-theme
|
|
#pop-icon-theme
|
|
catppuccin-papirus-folders
|
|
#catppuccin-kvantum
|
|
];
|
|
};
|
|
}
|