19 lines
328 B
Nix
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;
|
|
};
|
|
};
|
|
}
|