13 lines
251 B
Nix
13 lines
251 B
Nix
{ pkgs, ...}: {
|
|
home.pointerCursor = {
|
|
gtk.enable = true;
|
|
name = "Bibata-Modern-Ice";
|
|
package = pkgs.bibata-cursors;
|
|
size = 24;
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
XCURSOR_THEME = "Bibata-Modern-Ice";
|
|
XCURSOR_SIZE = 24;
|
|
};
|
|
}
|