17 lines
231 B
Nix
17 lines
231 B
Nix
|
let
|
||
|
theme = import ../theme.nix;
|
||
|
in
|
||
|
{
|
||
|
catppuccin.cursors = {
|
||
|
enable = true;
|
||
|
flavor = theme.flavor;
|
||
|
accent = "dark";
|
||
|
};
|
||
|
|
||
|
home.pointerCursor = {
|
||
|
gtk.enable = true;
|
||
|
x11.enable = true;
|
||
|
size = 16;
|
||
|
};
|
||
|
}
|