blob: 15396a0c624438e211acc3dc91976de5d8fcbef8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#+title: Cursor Configuration
Use =vanilla-dmz= cursor size 16.
#+begin_src nix :tangle ~/.flake/home/cursor.nix :mkdirp yes
{ config, pkgs, ... }:
{
home.file.".icons/default".source = "${pkgs.vanilla-dmz}/share/icons/Vanilla-DMZ";
xresources.properties = {
"Xcursor.size" = 16;
};
}
#+end_src
|