mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
22 lines
314 B
Nix
22 lines
314 B
Nix
let
|
|
sources = import ./npins;
|
|
in
|
|
{ pkgs ? import sources.nixos-unstable { } }:
|
|
|
|
let
|
|
docs = import ./docs { inherit pkgs; };
|
|
in
|
|
pkgs.mkShell {
|
|
inputsFrom = [ docs.website ];
|
|
|
|
packages = with pkgs; [
|
|
npins
|
|
treefmt
|
|
nixpkgs-fmt
|
|
|
|
# For easy validation of the test suite.
|
|
yajsv
|
|
jq
|
|
];
|
|
}
|