mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-01-11 12:30:23 +01:00
14 lines
226 B
Nix
14 lines
226 B
Nix
let
|
|
shellAliases = {
|
|
"zj" = "zellij";
|
|
};
|
|
in
|
|
{
|
|
programs.zellij = {
|
|
enable = true;
|
|
};
|
|
# only works in bash/zsh, not nushell
|
|
home.shellAliases = shellAliases;
|
|
programs.nushell.shellAliases = shellAliases;
|
|
}
|