diff --git a/home/x/cursor.nix b/home/x/cursor.nix new file mode 100644 index 0000000..4bbff0c --- /dev/null +++ b/home/x/cursor.nix @@ -0,0 +1,12 @@ +{ 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"; + }; + }; +} diff --git a/home/x/default.nix b/home/x/default.nix index 086c41b..f021ca0 100644 --- a/home/x/default.nix +++ b/home/x/default.nix @@ -4,6 +4,7 @@ let in { imports = [ + ./cursor.nix ./keyboard.nix ];