dotfiles/nix/modules/home-manager/gtk.nix

12 lines
192 B
Nix
Raw Normal View History

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