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