feat(stylix): add cursor

This commit is contained in:
Mohammad Rafiq 2025-03-24 04:09:41 +08:00
parent 4f6fb110d6
commit 18379a72b7
No known key found for this signature in database

View file

@ -1,10 +1,17 @@
{ inputs, ... }: { inputs, pkgs, ... }:
{ {
imports = [ imports = [
inputs.stylix.nixosModules.stylix inputs.stylix.nixosModules.stylix
./themes/darkviolet.nix ./themes/darkviolet.nix
./fonts/sauce-code-pro.nix ./fonts/sauce-code-pro.nix
]; ];
stylix.enable = true; stylix = {
stylix.image = ../../media/wallpaper.jpg; enable = true;
image = ../../media/wallpaper.jpg;
cursor = {
name = "macOS dsfs";
package = pkgs.apple-cursor;
size = 20;
};
};
} }