infrastructure/profiles/gui/home/gtk.nix
2021-03-28 21:03:48 +01:00

15 lines
245 B
Nix

{ config, lib, pkgs, ... }:
{
gtk = {
enable = true;
iconTheme = {
name = "Numix-Square";
package = pkgs.numix-icon-theme-square;
};
theme = {
name = "Arc-Dark";
package = pkgs.arc-theme;
};
};
}