11 lines
164 B
Nix
11 lines
164 B
Nix
|
{
|
||
|
flake.modules.homeManager.gui =
|
||
|
{ pkgs, ... }:
|
||
|
{
|
||
|
gtk.iconTheme = {
|
||
|
name = "Arc";
|
||
|
package = pkgs.arc-icon-theme;
|
||
|
};
|
||
|
};
|
||
|
}
|