reNixos/hand7s/programs/fish.nix
s0me1newithhand7s ea0d04e8b8 chore(hand7s): fish cleaning
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
2026-05-29 16:32:11 +03:00

24 lines
488 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
lib,
pkgs,
...
}: {
programs = {
fish = {
enable = true;
generateCompletions = true;
functions = {
fish_greeting = {
body = "${lib.getExe' pkgs.uutils-coreutils-noprefix "echo"} ' ~ 𝑠𝑛𝑜𝑤𝑦 𝑝𝑙𝑎𝑐𝑒, 𝑓𝑢𝑙𝑙 𝑜𝑓 𝑓𝑙𝑎𝑘𝑒𝑠! '";
};
};
plugins = [
{
name = "autopair";
src = pkgs.fishPlugins.autopair;
}
];
};
};
}