fix packages
This commit is contained in:
parent
719c03887d
commit
7f776f8053
|
@ -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 ;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user