diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-07-25 22:52:20 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-07-25 23:00:44 -0700 |
| commit | 2f17e369400b9c895b3554008ab3efbc76255428 (patch) | |
| tree | 172c910e17f14bb8d0d7306fe527c2c79140df64 /roles/home/desktop/gtk.nix | |
| parent | 10c984caf7067656990e5966b4626314f225755f (diff) | |
roles: home: migrate old home module to roles
Diffstat (limited to 'roles/home/desktop/gtk.nix')
| -rw-r--r-- | roles/home/desktop/gtk.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/roles/home/desktop/gtk.nix b/roles/home/desktop/gtk.nix new file mode 100644 index 0000000..33745d5 --- /dev/null +++ b/roles/home/desktop/gtk.nix @@ -0,0 +1,15 @@ +{ pkgs, ... }: + +{ + gtk = { + theme = { + package = pkgs.gruvbox-gtk-theme; + name = "Gruvbox-Dark"; + }; + + font = { + name = "monospace"; + size = 8; + }; + }; +} |