refactor(stylix): add home-manager integration

This commit is contained in:
Mohammad Rafiq 2025-03-25 06:07:17 +08:00
parent a70aebffff
commit 6e258fc023
No known key found for this signature in database
16 changed files with 52 additions and 33 deletions

View file

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
stylix.cursor = {
name = "Banana";
package = pkgs.banana-cursor;
size = 22;
};
}

View file

@ -0,0 +1,9 @@
{
stylix.cursor = {
name = "wii-cursor";
# package = inputs.wii-cursor.packages.${pkgs.stdenv.hostPlatform.system}.wii-cursor;
package = builtins.trace (inputs.wii-cursor.packages.${pkgs.stdenv.hostPlatform.system}.wii-cursor
) (inputs.wii-cursor.packages.${pkgs.stdenv.hostPlatform.system}.wii-cursor);
size = 20;
};
}