fix QT to use kvantuim again
This commit is contained in:
parent
7e36b30811
commit
9656e48df5
1 changed files with 14 additions and 15 deletions
|
@ -6,31 +6,24 @@ in
|
||||||
config = with cfg; lib.mkIf (enable && graphical) {
|
config = with cfg; lib.mkIf (enable && graphical) {
|
||||||
qt = {
|
qt = {
|
||||||
enable = true;
|
enable = true;
|
||||||
style = "breeze";
|
style = "kvantum";
|
||||||
platformTheme = "qt5ct";
|
platformTheme = "qt5ct";
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; with kdePackages; [
|
environment.systemPackages = with pkgs; with kdePackages; [
|
||||||
# qtstyleplugin-kvantum
|
qtstyleplugin-kvantum
|
||||||
# catppuccin-kvantum
|
|
||||||
catppuccin-sddm-corners
|
catppuccin-sddm-corners
|
||||||
libsForQt5.qtgraphicaleffects
|
libsForQt5.qtgraphicaleffects
|
||||||
# catppuccin-kvantum
|
catppuccin-kvantum
|
||||||
kdePackages.audiocd-kio
|
kdePackages.audiocd-kio
|
||||||
xcb-util-cursor
|
xcb-util-cursor
|
||||||
qt6ct
|
qt6ct
|
||||||
dolphin
|
kdePackages.dolphin
|
||||||
papirus-icon-theme
|
|
||||||
qtwayland
|
|
||||||
libsForQt5.kirigami2
|
|
||||||
kdePackages.kirigami
|
|
||||||
breeze-icons
|
|
||||||
libsForQt5.breeze-qt5
|
|
||||||
breeze
|
|
||||||
okular
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# environment.etc."kvantum".source = "${pkgs.catppuccin-kvantum}/share/Kvantum";
|
environment.pathsToLink = [
|
||||||
|
"/share/Kvantum"
|
||||||
|
];
|
||||||
|
|
||||||
services.displayManager = {
|
services.displayManager = {
|
||||||
sddm = {
|
sddm = {
|
||||||
|
@ -42,6 +35,12 @@ in
|
||||||
defaultSession = lib.optionalString cfg.sway.enable "sway";
|
defaultSession = lib.optionalString cfg.sway.enable "sway";
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.plymouth.enable = true;
|
boot.plymouth = {
|
||||||
|
themePackages = with pkgs; [
|
||||||
|
catppuccin-plymouth
|
||||||
|
];
|
||||||
|
theme = "catppuccin-macchiato";
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue