mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
25 lines
348 B
Nix
25 lines
348 B
Nix
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
|
|
];
|
|
}
|