10 lines
132 B
Nix
10 lines
132 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
{
|
||
|
programs.bash = {
|
||
|
enable = true;
|
||
|
initExtra = ''
|
||
|
export EDITOR=emacs\ -nw
|
||
|
'';
|
||
|
};
|
||
|
}
|