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

12 lines
192 B
Nix
Raw Normal View History

2024-03-26 00:16:48 +00:00
{ pkgs, ... }:
{
gtk = {
enable = true;
theme.package = pkgs.arc-theme;
theme.name = "Arc-Dark";
iconTheme.package = pkgs.arc-icon-theme;
iconTheme.name = "Arc";
};
}