dotfiles/users/josh/home_manager/de/gtk.nix
RingOfStorms (Joshua Bell) b21e20de05 idk
2024-12-31 07:34:37 -06:00

25 lines
475 B
Nix

{ pkgs, lib, nixConfig, ... }:
{
gtk = lib.mkIf (!nixConfig.mods.de_cosmic.enable) {
enable = true;
cursorTheme = {
name = "Numix-Cursor";
package = pkgs.numix-cursor-theme;
};
gtk3.extraConfig = {
Settings = ''
gtk-application-prefer-dark-theme=1
'';
};
gtk4.extraConfig = {
Settings = ''
gtk-application-prefer-dark-theme=1
'';
};
};
home.sessionVariables.GTK_THEME = "palenight";
}