nixos-config/home/shell/shell.nix

22 lines
285 B
Nix

{ config, pkgs, ... }:
let
shellAliases = {
emacs = "emacsclient -c";
};
in
{
programs.fish = {
enable = true;
shellInit = ''
fish_vi_key_bindings
'';
inherit shellAliases;
};
programs.bash = {
enable = true;
inherit shellAliases;
};
}