dotfiles/lib/nixos/home-manager/modules/gtk.nix
2024-07-10 12:34:20 +01:00

12 lines
192 B
Nix

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