nix-config/users/desktops/common/home.nix
2023-12-12 13:28:59 -03:00

13 lines
211 B
Nix

{ config, pkgs, lib, ... }:
{
home = {
pointerCursor = {
size = 24;
gtk.enable = true;
x11.enable = true;
name = "breeze_cursors";
package = pkgs.breeze-icons;
};
};
}