Re-add gtk configuration, switch Thunar back to

...the dark theme
This commit is contained in:
Oliver Davies 2024-07-10 12:33:55 +01:00
parent 91aa0e0c0e
commit 2220569643
2 changed files with 12 additions and 0 deletions

View file

@ -11,6 +11,7 @@
./modules/espanso.nix
./modules/feh.nix
./modules/flameshot.nix
./modules/gtk.nix
./modules/mpv.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";
};
}