nix-config/home/x/cursor.nix
Bruno BELANYI 059831b532
All checks were successful
continuous-integration/drone/push Build is passing
home: x: cursor: switch to Vimix
2021-05-27 19:15:52 +02:00

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";
};
};
}