mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
12 lines
245 B
Nix
12 lines
245 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;
|
|
};
|
|
}
|