nixos/home-manager/gtk.nix
2023-07-03 16:39:37 -04:00

15 lines
247 B
Nix

{pkgs, ...}: {
gtk = {
enable = true;
iconTheme = {
name = "Papirus";
package = pkgs.papirus-icon-theme;
};
# cursorTheme = {
# name = "GoogleDot-Blue";
# package = pkgs.nordzy-cursor-theme;
# };
};
}