15 lines
308 B
Nix
15 lines
308 B
Nix
{config, pkgs, ...}:
|
|
{
|
|
home.packages = with pkgs; [oreo-cursors-plus];
|
|
home.pointerCursor = {
|
|
name = "oreo-cursors-plus";
|
|
package = pkgs.oreo-cursors-plus;
|
|
size = 32;
|
|
};
|
|
gtk.enable = true;
|
|
gtk.cursorTheme = {
|
|
package = pkgs.oreo-cursors-plus;
|
|
name = "oreo-cursors-plus";
|
|
};
|
|
}
|