Initial commit
This commit is contained in:
commit
16a428e396
29 changed files with 7083 additions and 0 deletions
18
flake.nix
Normal file
18
flake.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
description = "@websnacksjs";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils }:
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
let pkgs = import nixpkgs { inherit system; };
|
||||
in {
|
||||
formatter = pkgs.nixpkgs-fmt;
|
||||
|
||||
devShell =
|
||||
pkgs.mkShell { nativeBuildInputs = with pkgs; [ nodejs_22 ]; };
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue