nixos/modules/shell.nix

10 lines
132 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
programs.bash = {
enable = true;
initExtra = ''
export EDITOR=emacs\ -nw
'';
};
}