home: x: add cursor

I would like to check out alternative themes. Notably Quintom [1],
Volantes [2], and Vimix [3].

[1]: https://gitlab.com/Burning_Cube/quintom-cursor-theme
[2]: https://github.com/varlesh/volantes-cursors
[3]: https://github.com/vinceliuice/Vimix-cursors
This commit is contained in:
Bruno BELANYI 2021-05-06 12:38:42 +02:00
parent c4bc609b7e
commit 7e1ca1f3d5
2 changed files with 13 additions and 0 deletions

12
home/x/cursor.nix Normal file
View File

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

View File

@ -4,6 +4,7 @@ let
in
{
imports = [
./cursor.nix
./keyboard.nix
];