Basic structure; day 1, 2

This commit is contained in:
bluepython508
2024-12-03 10:34:33 +00:00
commit b24b64a22c
12 changed files with 2164 additions and 0 deletions

11
flake.nix Normal file
View File

@@ -0,0 +1,11 @@
{
outputs = { self, nixpkgs, systems }: let
eachSystem = f: nixpkgs.lib.genAttrs (import systems) (system: f { inherit system; pkgs = nixpkgs.legacyPackages.${system}; });
in {
devShells = eachSystem ({pkgs, ...}: {
default = pkgs.mkShell {
packages = [pkgs.rakudo pkgs.just pkgs.watchexec];
};
});
};
}