16 lines
337 B
Nix
16 lines
337 B
Nix
{...}:
|
|
{
|
|
enable = true;
|
|
shellAliases = {
|
|
"ls" = "eza -lhs type";
|
|
"cp" = "cp -v";
|
|
"mv" = "mv -v";
|
|
"ytmp3" = "yt-dlp -o '%(title)s.%(ext)s' -x --audio-format mp3";
|
|
"myip" = "curl ifconfig.me";
|
|
};
|
|
|
|
functions = {
|
|
"fish_greeting" = "fortune";
|
|
"fish_prompt" = builtins.readFile ../files/prompt.fish;
|
|
};
|
|
}
|