This is now controlled by the graphical flag.

This commit is contained in:
James Patrick 2021-12-14 23:58:51 -05:00
parent e48a3e8e44
commit 326be5ceee

View File

@ -1,18 +1,26 @@
{ config, pkgs, ... }: { { config, lib, pkgs, ... }:
home-manager.users.james = { let graphical = config.graphical;
home.packages = with pkgs; [ dracula-theme ]; in with lib; {
home.sessionVariables = { GTK_THEME = "Dracula"; }; config = mkIf graphical.enable {
home-manager.users.james = {
home.packages = with pkgs; [
dracula-theme
moka-icon-theme
numix-cursor-theme
];
home.sessionVariables = { GTK_THEME = "Dracula"; };
xdg.configFile."gtk-3.0/settings.ini".text = '' xdg.configFile."gtk-3.0/settings.ini".text = ''
[Settings] [Settings]
gtk-theme-name=Dracula gtk-theme-name=Dracula
#gtk-icon-theme-name= gtk-icon-theme-name=Moka
#gtk-cursor-theme-name= gtk-cursor-theme-name=Numix-Cursor
gtk-fallback-icon-theme=gnome gtk-fallback-icon-theme=gnome
gtk-application-prefer-dark-theme=true gtk-application-prefer-dark-theme=true
gtk-xft-hinting=1 gtk-xft-hinting=1
gtk-xft-hintstyle=hintfull gtk-xft-hintstyle=hintfull
gtk-xft-rgba=none gtk-xft-rgba=none
''; '';
};
}; };
} }