goes to a random website hosted on wisp.place
1{
2 inputs.parts.url = "github:hercules-ci/flake-parts";
3 inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
4
5 outputs =
6 inp:
7 inp.parts.lib.mkFlake { inputs = inp; } {
8 systems = [ "x86_64-linux" ];
9 perSystem =
10 {
11 pkgs,
12 ...
13 }:
14 {
15 packages.default = pkgs.callPackage ./default.nix {};
16 devShells = {
17 default = pkgs.mkShell {
18 packages = with pkgs; [
19 deno
20 nodejs
21 ];
22 };
23 };
24 };
25 };
26}