aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2024-05-17 00:02:52 -0700
committerCaroline Larimore <caroline@larimo.re>2024-05-17 00:02:52 -0700
commit1f23c8f532b6aafb917dac9fc46ecfaceffb700d (patch)
treec41d4d2c955a0ceac741d670df1f982dcc439c92
parentaf3547a2e2b82c0f03c34dff7ee957a8ba5443f8 (diff)
Set GTK theme
-rw-r--r--configuration.nix1
-rw-r--r--home/gtk.nix10
2 files changed, 11 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix
index c51c298..f76b872 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -105,6 +105,7 @@
enableSSHSupport = true;
};
+ programs.dconf.enable = true;
services.printing.enable = true;
# This option defines the first version of NixOS you have installed on this particular machine,
diff --git a/home/gtk.nix b/home/gtk.nix
index 8f640c4..d0dc075 100644
--- a/home/gtk.nix
+++ b/home/gtk.nix
@@ -3,5 +3,15 @@
{
gtk = {
enable = true;
+
+ theme = {
+ package = pkgs.gruvbox-gtk-theme;
+ name = "Gruvbox-Dark-B";
+ };
+
+ font = {
+ name = "monospace";
+ size = 8;
+ };
};
} \ No newline at end of file