Initial commit

This commit is contained in:
2025-08-19 20:42:14 +03:00
commit 44d51f2059
61 changed files with 7809 additions and 0 deletions

20
flake.nix Normal file
View File

@@ -0,0 +1,20 @@
{
description = "nothing.run website";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = {
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem
(
system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.default = pkgs.mkShell {
packages = with pkgs;[nodejs];
};
}
);
}