1
0
Fork 0
petclinic/flake/flake.nix

12 lines
301 B
Nix
Raw Normal View History

2024-11-21 20:22:38 -05:00
{
inputs.flake-utils.url = "github:/numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let pkgs = nixpkgs.legacyPackages.${system}; in
with pkgs; {
devShells.default = mkShell {
packages = [ jdk21 nodejs_22];
};
});
}