Added
This commit is contained in:
26
programs/wm/qt/qt.nix
Normal file
26
programs/wm/qt/qt.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{ 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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user