summaryrefslogtreecommitdiff
path: root/flake.nix
blob: f46e2951895ac82faabd664e4f08130eb4878a07 (plain) (blame)
1
2
3
4
5
6
7
{
    outputs = { nixpkgs, flake-utils, ... }: flake-utils.lib.eachDefaultSystem (system: {
        devShells.default = with import nixpkgs { inherit system; }; mkShell {
            buildInputs = [ nodejs ];
        };
    });
}