nix-config/home/themes/dark/gtk.nix

23 lines
375 B
Nix
Raw Normal View History

2025-04-02 23:34:58 +02:00
{ pkgs, ... }:
{
gtk = {
enable = true;
theme = {
package = pkgs.flat-remix-gtk;
name = "Flat-Remix-GTK-Grey-Darkest";
};
iconTheme = {
2025-04-03 13:07:59 +02:00
package = pkgs.adwaita-icon-theme;
2025-04-02 23:34:58 +02:00
name = "Adwaita";
};
font = {
name = "Sans";
size = 12;
};
};
}