fix: nano was adding a new line on close

This commit is contained in:
silver 2023-05-21 00:18:29 +01:00
parent 32577ecebc
commit ee28f2047a

View file

@ -25,5 +25,5 @@ in mkShell {
buildInputs = [ imports.agenix.agenix ];
shellHook = ''export EDITOR="${pkgs.nano}/bin/nano"'';
shellHook = ''export EDITOR="${pkgs.nano}/bin/nano --nonewlines"'';
}