This commit is contained in:
Chris Cochrun 2022-09-22 15:30:36 -05:00
parent ff4c301325
commit 96de8e3b00

View file

@ -10,10 +10,10 @@
let let
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
src = ./.; src = ./.;
in in rec
{ {
devShell = import ./shell.nix { inherit pkgs; }; devShell = import ./shell.nix { inherit pkgs; };
defaultPackage.x86_64-linux = import ./default.nix { inherit pkgs; }; defaultPackage = import ./default.nix { inherit pkgs; };
} }
); );
} }