Skip to content

Commit

Permalink
flake: add override
Browse files Browse the repository at this point in the history
  • Loading branch information
kraanzu committed Nov 7, 2024
1 parent 34b059e commit 44330fd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@
);

packageFor = system:
pkgsFor.${system}.callPackage ./nix {};
pkgsFor.${system}.callPackage ./nix {}
// {
override = attrs: (packageFor system).overrideAttrs (_: attrs);
};
in {
packages = forEachSystem (
system: {
Expand Down

0 comments on commit 44330fd

Please sign in to comment.