1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00

z-lua: Add shell aliases to fish (#2376)

z.lua shell aliases are currently only added to bash and zsh, this also
adds them to the fish config
This commit is contained in:
Jonas Carpay 2021-10-06 23:49:56 +09:00 committed by GitHub
parent 60ebc273c9
commit d9fe208f3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,5 +86,7 @@ in {
programs.bash.shellAliases = mkIf cfg.enableAliases aliases;
programs.zsh.shellAliases = mkIf cfg.enableAliases aliases;
programs.fish.shellAliases = mkIf cfg.enableAliases aliases;
};
}