nixos/home-manager/gtk.nix
2023-10-04 11:01:27 -04:00

19 lines
253 B
Nix

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