diff --git a/systems/modules/cursors/banana-cursor.nix b/systems/modules/cursors/banana-cursor.nix new file mode 100644 index 0000000..57b141d --- /dev/null +++ b/systems/modules/cursors/banana-cursor.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: +{ + stylix.cursor = { + name = "Banana"; + package = pkgs.banana-cursor; + size = 22; + }; +} diff --git a/systems/modules/cursors/wii-cursor.nix b/systems/modules/cursors/wii-cursor.nix new file mode 100644 index 0000000..5dceedd --- /dev/null +++ b/systems/modules/cursors/wii-cursor.nix @@ -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; + }; +} diff --git a/systems/modules/stylix.nix b/systems/modules/stylix.nix index d5ada06..3c7d6a1 100644 --- a/systems/modules/stylix.nix +++ b/systems/modules/stylix.nix @@ -4,16 +4,10 @@ inputs.stylix.nixosModules.stylix ./themes/darkviolet.nix ./fonts/sauce-code-pro.nix + ./cursors/banana-cursor.nix ]; stylix = { enable = true; image = ../../media/wallpaper.jpg; - 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; - }; }; }