dotfiles/users/josh/home_manager/de/gtk.nix
RingOfStorms (Joshua Bell) e5ade464b9 cosmic updates
2024-10-10 16:42:35 -05:00

25 lines
476 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";
}