1
0
mirror of https://github.com/PaddiM8/kalker.git synced 2025-07-04 08:20:01 +02:00

Merge pull request from Kloenk/flake-packages

Fix flake packages attribute
This commit is contained in:
PaddiM8
2021-09-23 17:32:46 +02:00
committed by GitHub

@ -37,7 +37,8 @@
};
};
packages = forAllSystems (system: nixpkgsFor.${system});
packages =
forAllSystems (system: { inherit (nixpkgsFor.${system}) kalker; });
defaultPackage = forAllSystems (system: self.packages.${system}.kalker);