initial version

This commit is contained in:
Robin Appelman 2023-11-02 17:03:53 +01:00
commit c12ca846eb
12 changed files with 469 additions and 0 deletions

24
flake.nix Normal file
View file

@ -0,0 +1,24 @@
{
inputs = {
utils.url = "github:numtide/flake-utils";
nixpkgs.url = "nixpkgs/release-23.05";
};
outputs = {
self,
nixpkgs,
utils
}:
utils.lib.eachDefaultSystem (system: let
pkgs = (import nixpkgs) {
inherit system;
};
in rec {
# `nix develop`
devShell = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
nodejs_20
];
};
});
}