Files
nixos/modules/home/gtk.nix
2024-06-04 20:16:08 -05:00

30 lines
580 B
Nix

{ lib
, pkgs
, config
, systemConfig
, ...
}:
with lib; let
gui = systemConfig.gui;
in
{
config = {
gtk = mkIf gui.enable {
enable = true;
cursorTheme = {
name = "phinger-cursors-dark";
package = pkgs.phinger-cursors;
};
iconTheme = {
name = "awaida-dark";
package = pkgs.gnome.adwaita-icon-theme;
};
theme = {
name = "adw-gtk3-dark";
package = pkgs.adw-gtk3;
};
};
};
}