12 lines
192 B
Nix
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";
|
||
|
};
|
||
|
}
|