major home-manager changes

This commit is contained in:
2021-05-02 09:24:02 +05:30
parent da3ef21ccd
commit 70b18cf4fd
33 changed files with 1115 additions and 37 deletions

10
home/modules/gtk.nix Normal file
View File

@@ -0,0 +1,10 @@
{config, pkgs,...}:
{
gtk = {
enable = true;
iconTheme.name = "Gruvbox-Material-Dark";
iconTheme.package = pkgs.gruvbox-icons;
theme.name = "Equilux";
theme.package = pkgs.equilux-theme;
};
}