27 lines
702 B
Nix
27 lines
702 B
Nix
{ config, lib, pkgs, ... }:
|
|
let graphical = config.this.graphical;
|
|
in with lib; {
|
|
config = mkIf graphical.enable {
|
|
home-manager.users.james = {
|
|
home.packages = with pkgs; [
|
|
dracula-theme
|
|
kora-icon-theme
|
|
numix-cursor-theme
|
|
];
|
|
home.sessionVariables = { GTK_THEME = "Dracula"; };
|
|
|
|
xdg.configFile."gtk-3.0/settings.ini".text = ''
|
|
[Settings]
|
|
gtk-theme-name=Dracula
|
|
gtk-icon-theme-name=kora
|
|
gtk-cursor-theme-name=Numix-Cursor
|
|
gtk-fallback-icon-theme=gnome
|
|
gtk-application-prefer-dark-theme=true
|
|
gtk-xft-hinting=1
|
|
gtk-xft-hintstyle=hintfull
|
|
gtk-xft-rgba=none
|
|
'';
|
|
};
|
|
};
|
|
}
|