feat: add flattened package exports for improved CI visibility in flake.nix
All checks were successful
CI / list-packages (push) Successful in 3s

This commit is contained in:
암냥 2026-04-25 12:55:22 +09:00
commit 1c370cfb62
No known key found for this signature in database
2 changed files with 19 additions and 6 deletions

View file

@ -21,8 +21,10 @@
packages.${system} = {
inherit (pkgs) waterfox-bin xcursor-mizuki;
};
} // pkgs.pjsk-cursor.flat;
legacyPackages.${system} = (builtins.removeAttrs pkgs.pjsk-cursor [ "override" "overrideDerivation" ]);
legacyPackages.${system} = {
inherit (pkgs.pjsk-cursor) pjsk-cursor pjsk-cursors;
};
};
}