flakes/modules/user/theming.nix

30 lines
785 B
Nix
Raw Normal View History

{ config, pkgs, ... }: {
gtk = {
enable = true;
2021-06-04 16:17:02 +07:00
gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
font = {
package = pkgs.open-sans;
name = "Open Sans";
size = 11;
};
2025-01-03 19:15:22 +11:00
gtk3.extraConfig = {
gtk-application-prefer-dark-theme = if config.catppuccin.flavor == "latte" then "0" else "1";
};
2025-01-03 19:15:22 +11:00
gtk4.extraConfig = {
gtk-application-prefer-dark-theme = if config.catppuccin.flavor == "latte" then "0" else "1";
};
};
2021-05-27 15:49:40 +07:00
2025-01-03 19:15:22 +11:00
dconf.settings = {
"org/gnome/desktop/interface".color-scheme = if config.catppuccin.flavor == "latte" then "prefer-light" else "prefer-dark";
2025-01-03 19:15:22 +11:00
};
2022-06-09 10:54:32 +07:00
home.pointerCursor = {
package = pkgs.yaru-theme;
name = "Yaru";
2025-03-17 12:22:29 +11:00
size = 24;
2022-06-09 10:54:32 +07:00
gtk.enable = true;
x11.enable = true;
};
}