all repos — nixfiles @ 7f3e574437879f97ca606b29f7a914bc04f32fbb

System and user configuration, managed by nix and home-manager

Make shell aliases shell-agnostic

Alan Pearce
commit

7f3e574437879f97ca606b29f7a914bc04f32fbb

parent

62e1af7c507917673ed5299478c27d341089a544

1 file changed, 2 insertions(+), 1 deletion(-)

changed files
M user/settings/base.nixuser/settings/base.nix
@@ -5,6 +5,7 @@ , ...
}: { imports = [ ./neovim.nix + ./shell.nix ]; # Let Home Manager install and manage itself. programs.home-manager.enable = true;
@@ -26,7 +27,7 @@ dataHome = "${config.home.homeDirectory}/.local/share";
stateHome = "${config.home.homeDirectory}/.local/state"; }; - programs.zsh.shellAliases = { + home.shellAliases = { make = "remake"; }; programs.htop = {