First implementation

This commit is contained in:
2024-06-15 11:24:31 +02:00
parent fe9643e4ad
commit 4cd3649cc1
9 changed files with 455 additions and 1 deletions

17
flake.nix Normal file
View File

@@ -0,0 +1,17 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils }:
utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in {
devShell = with pkgs; mkShell {
buildInputs = with pkgs; [ nodejs_22 ];
};
}
);
}