From 18379a72b72d72c8b2b2164785b43ca7c75bada3 Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Mon, 24 Mar 2025 04:09:41 +0800 Subject: [PATCH] feat(stylix): add cursor --- systems/modules/stylix.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/systems/modules/stylix.nix b/systems/modules/stylix.nix index 11e90bb..361e16c 100644 --- a/systems/modules/stylix.nix +++ b/systems/modules/stylix.nix @@ -1,10 +1,17 @@ -{ inputs, ... }: +{ inputs, pkgs, ... }: { imports = [ inputs.stylix.nixosModules.stylix ./themes/darkviolet.nix ./fonts/sauce-code-pro.nix ]; - stylix.enable = true; - stylix.image = ../../media/wallpaper.jpg; + stylix = { + enable = true; + image = ../../media/wallpaper.jpg; + cursor = { + name = "macOS dsfs"; + package = pkgs.apple-cursor; + size = 20; + }; + }; }