nix-config/home/x/cursor.nix
2021-05-10 00:31:01 +02:00

13 lines
211 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.my.home.x;
in
{
config = lib.mkIf cfg.enable {
xsession.pointerCursor = {
package = pkgs.numix-cursor-theme;
name = "Numix-Cursor";
};
};
}