18 lines
391 B
Nix
18 lines
391 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let cfg = config.sydnix.capitaine-cursors;
|
|
in {
|
|
options.sydnix.capitaine-cursors = {
|
|
enable = lib.mkEnableOption "Breeze and MacOS -inspired cursor theme";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
home.pointerCursor = {
|
|
enable = true;
|
|
package = pkgs.capitaine-cursors;
|
|
gtk.enable = true;
|
|
name = "capitaine-cursors";
|
|
};
|
|
};
|
|
}
|