mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
15 lines
251 B
Nix
15 lines
251 B
Nix
{
|
|
config,
|
|
...
|
|
}: {
|
|
catppuccin.cursors.enable = true;
|
|
home.pointerCursor = {
|
|
dotIcons.enable = true;
|
|
x11 = {
|
|
enable = true;
|
|
defaultCursor = config.home.pointerCursor.name;
|
|
};
|
|
gtk.enable = true;
|
|
size = 32;
|
|
};
|
|
}
|