mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
10 lines
194 B
Nix
10 lines
194 B
Nix
{config, ...}: {
|
|
home.pointerCursor = {
|
|
dotIcons.enable = true;
|
|
x11 = {
|
|
enable = true;
|
|
defaultCursor = config.home.pointerCursor.name;
|
|
};
|
|
gtk.enable = true;
|
|
};
|
|
}
|