27 lines
459 B
Nix
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";
|
|
};
|
|
}
|