13 lines
217 B
Nix
13 lines
217 B
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.my.home.x;
|
|
in
|
|
{
|
|
config = lib.mkIf cfg.enable {
|
|
xsession.pointerCursor = {
|
|
package = pkgs.ambroisie.vimix-cursors;
|
|
name = "Vimix-cursors";
|
|
};
|
|
};
|
|
}
|