Files
cnix/home-manager/gtk/default.nix
2024-06-23 13:18:58 +02:00

19 lines
328 B
Nix

{ pkgs, ... }:
{
gtk = {
enable = true;
theme = {
package = pkgs.orchis-theme;
name = "Orchis-Grey-Dark-Compact";
};
iconTheme = {
package = pkgs.gruvbox-plus-icons;
name = "Gruvbox-Plus-Dark";
};
font = {
name = "FiraCode Nerd Font Light";
size = 11;
};
};
}