nixos-config/subprojects/wrapper-manager-fds/shell.nix

25 lines
348 B
Nix
Raw Normal View History

let
sources = import ./npins;
in
{ pkgs ? import sources.nixos-unstable { } }:
let
websiteDevshell = import ./docs/shell.nix { inherit pkgs; };
in
pkgs.mkShell {
packages = with pkgs; [
websiteDevshell
npins
treefmt
nixpkgs-fmt
hugo
asciidoctor
# For easy validation of the test suite.
yajsv
jq
];
}