Configure gtk

This commit is contained in:
Oliver Davies 2024-03-26 00:16:48 +00:00
parent e92cfa3b23
commit 8dc0e30556
2 changed files with 12 additions and 0 deletions

View file

@ -4,6 +4,7 @@
./modules/copyq.nix
./modules/dunst.nix
./modules/espanso.nix
./modules/gtk.nix
./modules/feh.nix
./modules/flameshot.nix
./modules/kanshi.nix

View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
gtk = {
enable = true;
theme.package = pkgs.arc-theme;
theme.name = "Arc-Dark";
iconTheme.package = pkgs.arc-icon-theme;
iconTheme.name = "Arc";
};
}