fix: merge, seems I had already solved the nix-shell command

This commit is contained in:
silver 2023-02-24 12:13:57 +00:00
commit e7add7845a

View file

@ -1,4 +1,4 @@
# run with nix-shell dev.nix
# run with: nix-shell dev.nix
# has everything installed for dev
{ pkgs ? import <nixpkgs> {} }:
@ -25,5 +25,5 @@ in mkShell {
buildInputs = [ imports.agenix.agenix ];
shellHook = ''export EDITOR="/usr/bin/nano"'';
shellHook = ''export EDITOR="${pkgs.nano}/bin/nano"'';
}