Files
nixos-config/home/themes/catppuccin/qt.nix
Elias Schröter 20d9234cd9 setup fixed qt
qt works now, but theme is unreadable -> adapt for better usage
2026-03-21 12:07:38 +01:00

20 lines
292 B
Nix

{ pkgs, ... }:
{
qt = {
enable = true;
platformTheme.name = "qtct";
style.name = "kvantum";
};
home.packages = with pkgs; [
libsForQt5.qtstyleplugin-kvantum
libsForQt5.qt5ct
];
xdg.configFile."Kvantum" = {
recursive = true;
source = ./kvantum;
};
}