diff --git a/home/gtk.nix b/home/gtk.nix new file mode 100644 index 0000000..4ef6888 --- /dev/null +++ b/home/gtk.nix @@ -0,0 +1,17 @@ +{pkgs, ...}: { + gtk = { + enable = true; + theme = { + name = "Dracula"; + package = pkgs.dracula-theme; + }; + gtk3.extraConfig = { + gtk-application-prefer-dark-theme = 1; + gtk-cursor-theme-size=8; + }; + gtk4.extraConfig = { + gtk-application-prefer-dark-theme = 1; + gtk-cursor-theme-size=8; + }; + }; +} diff --git a/home/home.nix b/home/home.nix index 375925a..a9713c2 100644 --- a/home/home.nix +++ b/home/home.nix @@ -7,6 +7,7 @@ ./alacritty.nix ./tmux ./git.nix + ./gtk.nix ./ssh.nix ./bash.nix ./direnv.nix