dotfiles/common/.flake/home/cursor.nix.org
2024-10-07 18:55:30 -05:00

307 B

Cursor Configuration

Use vanilla-dmz cursor size 16.

{ config, pkgs, ... }:

{
  home.file.".icons/default".source = "${pkgs.vanilla-dmz}/share/icons/Vanilla-DMZ";
  xresources.properties = {
    "Xcursor.size" = 16;
  };
}