9 lines
172 B
Nix
9 lines
172 B
Nix
{ pkgs, ... }: {
|
|
home.pointerCursor = {
|
|
name = "macOS-Monterey";
|
|
package = pkgs.apple-cursor;
|
|
size = 32;
|
|
gtk.enable = true;
|
|
x11.enable = true;
|
|
};
|
|
}
|