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:
parent
ef0f4bdca5
commit
ad1d907c25
12
home/x/cursor.nix
Normal file
12
home/x/cursor.nix
Normal 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -4,6 +4,7 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./cursor.nix
|
||||||
./keyboard.nix
|
./keyboard.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue