pjsk cursor

This commit is contained in:
암냥 2026-04-13 12:53:37 +09:00
commit 50adab0177
No known key found for this signature in database
65 changed files with 98 additions and 46 deletions

View file

@ -10,16 +10,17 @@
system = "x86_64-linux";
overlay = final: prev: {
# waterfox = final.callPackage ./pkgs/waterfox/default.nix { };
another = final.callPackage ./pkgs/another/default.nix { };
# another = final.callPackage ./pkgs/another/default.nix { };
waterfox-bin = final.callPackage ./pkgs/waterfox-bin/default.nix { };
xcursor-mizuki = final.callPackage ./pkgs/xcursor-mizuki/default.nix { stdenv = final.stdenv; };
pjsk-cursor = final.callPackage ./pkgs/pjsk-cursor/default.nix { stdenv = final.stdenv; };
};
pkgs = nixpkgs.legacyPackages.${system}.extend overlay;
in {
overlays.default = overlay;
packages.${system} = {
inherit (pkgs) another waterfox-bin xcursor-mizuki;
inherit (pkgs) waterfox-bin xcursor-mizuki pjsk-cursor;
# default = pkgs.waterfox-bin;
};
};