Files
website/flake.nix
2025-08-19 20:42:14 +03:00

21 lines
392 B
Nix

{
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];
};
}
);
}