10 lines
174 B
Nix
10 lines
174 B
Nix
{config, pkgs, ...}: {
|
|
gtk = {
|
|
enable = true;
|
|
theme.name = "Adwaita-dark";
|
|
iconTheme = {
|
|
name = "Arc";
|
|
package = pkgs.arc-icon-theme;
|
|
};
|
|
};
|
|
}
|