diff --git a/shell.nix b/shell.nix index b95a76a..a1a44cd 100644 --- a/shell.nix +++ b/shell.nix @@ -1,10 +1,19 @@ -{ pkgs ? import { } }: +let + sources = import ./npins; +in +{ pkgs ? import sources.nixos-unstable { } }: pkgs.mkShell { - inputsFrom = with pkgs; [ nix ]; packages = with pkgs; [ npins treefmt nixpkgs-fmt + + hugo + asciidoctor + + # For easy validation of the test suite. + yajsv + jq ]; }