feat: capitaine cursors

This commit is contained in:
2025-11-05 05:31:17 -07:00
parent abd290b379
commit 7b70571f26
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{ 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";
};
};
}