Files
aoc-2023/flake.nix
bluepython508 89ded18386 Infra
2023-12-01 18:02:29 +00:00

8 lines
225 B
Nix

{
outputs = { self, nixpkgs, systems }: {
devShells = nixpkgs.lib.genAttrs (import systems) (system: {
default = nixpkgs.legacyPackages.${system}.beam.packages.erlang_26.callPackage ./shell.nix {};
});
};
}