fix packages

main
Rachel Lambda Samuelsson 2023-08-09 19:18:49 +02:00
parent 719c03887d
commit 7f776f8053
1 changed files with 2 additions and 4 deletions

View File

@ -10,13 +10,11 @@
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in rec {
packages = rec {
postgres = pkgs.postgresql_15_jit;
packages = {
default = pkgs.hello;
};
devShells.default = pkgs.mkShell {
packages = [ packages.default packages.postgres ];
packages = [ packages.default pkgs.postgresql_15_jit ];
shellHook = builtins.readFile ./build/devShellHook.sh ;
};
}