wrapper-manager-fds: improve devshell for non-flake users

This commit is contained in:
Gabriel Arazas 2024-07-13 17:00:39 +08:00
parent 76d6dbb1d8
commit 417247ad45

View File

@ -1,10 +1,19 @@
{ pkgs ? import <nixpkgs> { } }:
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
];
}