From 417247ad45f04ed4fcfcd4158b6822c3fc4391ed Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sat, 13 Jul 2024 17:00:39 +0800 Subject: [PATCH] wrapper-manager-fds: improve devshell for non-flake users --- shell.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) 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 ]; }