fix qt theme
Some checks failed
Activate Homelab Configuration / rebuild (push) Failing after 9s

This commit is contained in:
Satria 2026-05-05 19:10:06 +07:00
commit 6d3f4f33b5
2 changed files with 7 additions and 2 deletions

View file

@ -51,6 +51,7 @@
"GTK_APPLICATION_PREFER_DARK_THEME,1"
"GTK_THEME,Adwaita:dark"
"QT_QPA_PLATFORMTHEME,kvantum"
"QT_STYLE_OVERRIDE,kvantum"
];
general = {

View file

@ -1,10 +1,9 @@
{ lib, pkgs, ctp-opt, rice, ... }: {
dconf = {
enable = true;
settings."org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
gtk-theme = "Adwaita-dark";
gtk-theme = lib.mkForce "Adwaita-dark";
};
};
@ -24,6 +23,11 @@
qt = {
enable = true;
kvantum = {
enable = true;
themes = with pkgs; [ catppuccin-kvantum ];
settings.General.theme = "catppuccin-${ctp-opt.flavor}-${ctp-opt.accent}";
};
platformTheme.name = "kvantum";
style = {
name = "kvantum";