nix-config/home/themes/dark/qt.nix

20 lines
413 B
Nix
Raw Normal View History

2025-04-02 23:34:58 +02:00
{ pkgs, ... }:
{
home.packages = with pkgs.libsForQt5; [
qt5ct
qtstyleplugin-kvantum
];
qt = {
enable = true;
2025-04-02 23:51:05 +02:00
platformTheme.name = "qtct";
2025-04-02 23:34:58 +02:00
style.name = "kvantum";
};
xdg.configFile = {
"Kvantum/ArcDark".source = "${pkgs.arc-kde-theme}/share/Kvantum/ArcDark";
"Kvantum/kvantum.kvconfig".text = "[General]\ntheme=ArcDark";
};
}