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

20 lines
369 B
Nix
Raw Normal View History

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