site source

This commit is contained in:
wi11-holdsworth 2025-01-27 22:16:57 +11:00
parent 6076d5a2b4
commit 5fe2440107
24 changed files with 328 additions and 0 deletions

16
flake.nix Normal file
View file

@ -0,0 +1,16 @@
{
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = {
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem
(system:
let pkgs = nixpkgs.legacyPackages.${system}; in
{
devShells.default = import ./shell.nix { inherit pkgs; };
}
);
}