dotfiles/home-manager/hyprland/gtk.nix
Benjamin Palko 45ff4d5838 cursor!
2024-08-21 00:03:30 -04:00

25 lines
616 B
Nix

{ pkgs, ... }:
{
gtk = {
enable = true;
gtk3.extraConfig = {
gtk-application-prefer-dark-theme = 1;
};
gtk4.extraConfig = {
gtk-application-prefer-dark-theme = 1;
};
theme = {
name = "WhiteSur-Dark";
package = pkgs.whitesur-gtk-theme.override {
colorVariants = [ "Dark" ];
opacityVariants = [ "normal" ];
darkerColor = true;
};
};
iconTheme = {
name = "WhiteSur-dark";
package = pkgs.whitesur-icon-theme.override { themeVariants = [ "default" ]; };
};
};
home.sessionVariables.GTK_THEME = "WhiteSur-Dark";
}