mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-25 02:41:26 +01:00
13 lines
226 B
Nix
13 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;
|
|
}
|