nix-config/modules/desktop/gtk/icon-theme.nix
Oliver Davies 278904eec6
Some checks are pending
/ check (push) Waiting to run
Group desktop modules
2025-11-22 14:41:07 +00:00

10 lines
164 B
Nix

{
flake.modules.homeManager.gui =
{ pkgs, ... }:
{
gtk.iconTheme = {
name = "Arc";
package = pkgs.arc-icon-theme;
};
};
}