nixos-config/home/common/sh.nix

22 lines
285 B
Nix
Raw Normal View History

2019-10-19 12:55:35 +02:00
{ config, pkgs, ... }:
let
shellAliases = {
emacs = "emacsclient -c";
};
in
{
programs.fish = {
enable = true;
2019-10-21 09:47:21 +02:00
shellInit = ''
fish_vi_key_bindings
'';
2019-10-19 12:55:35 +02:00
inherit shellAliases;
};
programs.bash = {
enable = true;
inherit shellAliases;
};
}