Some checks failed
Activate Homelab Configuration / rebuild (push) Failing after 23s
47 lines
No EOL
1 KiB
Nix
47 lines
No EOL
1 KiB
Nix
{ lib, pkgs, ctp-opt, rice, ... }: {
|
|
|
|
dconf = {
|
|
enable = true;
|
|
settings."org/gnome/desktop/interface" = {
|
|
color-scheme = "prefer-dark";
|
|
gtk-theme = "Adwaita-dark";
|
|
};
|
|
};
|
|
|
|
gtk = {
|
|
enable = true;
|
|
gtk3.extraConfig.gtk-application-prefer-dark-theme = 1;
|
|
gtk4.theme = null;
|
|
iconTheme = {
|
|
name = "Papirus-Dark";
|
|
package = lib.mkForce pkgs.papirus-icon-theme;
|
|
};
|
|
theme = {
|
|
name = "Adwaita-dark";
|
|
package = pkgs.gnome-themes-extra;
|
|
};
|
|
};
|
|
|
|
qt = {
|
|
enable = true;
|
|
platformTheme.name = "kvantum";
|
|
style = {
|
|
name = "kvantum";
|
|
package = pkgs.catppuccin-kvantum.override {
|
|
variant = ctp-opt.flavor;
|
|
accent = ctp-opt.accent;
|
|
};
|
|
};
|
|
qt6ctSettings = {
|
|
Appearance = {
|
|
style = "kvantum";
|
|
icon_theme = "Papirus-Dark";
|
|
standar_dialogs = "xdgdesktopportal";
|
|
};
|
|
Fonts = {
|
|
fixed = "${rice.font},12";
|
|
general = "${rice.font},12";
|
|
};
|
|
};
|
|
};
|
|
} |