nix-config/modules2/gtk/icon-theme.nix
Oliver Davies 3a6a2f0bcc
All checks were successful
/ check (push) Successful in 1m38s
Move gtk configuration
2025-07-28 01:40:45 +01:00

10 lines
164 B
Nix

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