1
0
Fork 0

fix: inputs

Signed-off-by: jolheiser <john.olheiser@gmail.com>
main
jolheiser 2023-07-05 14:32:30 -05:00
parent fe084a0933
commit eb9ad65e14
Signed by: jolheiser
GPG Key ID: B853ADA5DA7BBF7A
1 changed files with 1 additions and 4 deletions

View File

@ -13,10 +13,7 @@
]; ];
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system); forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system);
in { in {
legacyPackages = forAllSystems (system:
import ./default.nix { pkgs = import nixpkgs { inherit system; }; });
packages = forAllSystems (system: packages = forAllSystems (system:
nixpkgs.lib.filterAttrs (_: v: nixpkgs.lib.isDerivation v) import ./default.nix { pkgs = import nixpkgs { inherit system; }; });
self.legacyPackages.${system});
}; };
} }