Files
nix-config/programs/wm/qt/qt.nix
2025-11-14 09:07:37 +01:00

27 lines
459 B
Nix

{ lib, pkgs, ... }:
{
home.packages = with pkgs; [
kdePackages.qt6ct
];
home.file.".config/qt6ct/colors" = {
source = ./catppuccin;
# copy the scripts directory recursively
recursive = true;
};
qt = {
enable = true;
kde.settings = { };
style = {
name = "qt6ct";
#package = pkgs.qt6.qtbase;
};
};
home.sessionVariables = {
QT_STYLE_OVERRIDE = "qt6ct";
QT_QPA_PLATFORMTHEME = "qt6ct";
};
}