nixos-config/home/gtk.nix
2025-02-01 02:55:44 -07:00

21 lines
440 B
Nix

{ inputs, pkgs, lib, config, ... }:
{
home.sessionVariables.GTK_THEME = "Tokyonight-Dark-B";
gtk = {
enable = true;
# theme.name = "adw-gtk3";
theme = {
name = "Tokyonight-Dark-B";
package = pkgs.tokyo-night-gtk;
};
cursorTheme = {
name = "Oreo-Cursors";
package = pkgs.oreo-cursors-plus;
};
iconTheme = {
name = "breeze-dark";
package = pkgs.breeze-icons;
};
};
}