/ nix / shell.nix
shell.nix
 1  {
 2    perSystem =
 3      { pkgs, ... }:
 4      {
 5        devShells.default = pkgs.mkShell {
 6          packages = with pkgs; [
 7            gitMinimal
 8            just
 9            lychee
10            miniserve
11            hugo
12          ];
13        };
14      };
15  }