(home) add fish shell

This commit is contained in:
Laureηt 2024-03-31 16:13:09 +02:00
parent 898dc71fcd
commit dd2eabad54
Signed by: Laurent
SSH key fingerprint: SHA256:pb5NrYg80So5z9hmqQFPmp//sgr+DFeJkKhmGyU2NLk

12
home/shell/fish.nix Normal file
View file

@ -0,0 +1,12 @@
{inputs, ...}: {
xdg.configFile."fish/themes".source = "${inputs.catppuccin-fish}/themes";
programs.fish = {
enable = true;
functions = {
fish_greeting = "";
gitignore = "curl -sL https://www.gitignore.io/api/$argv";
};
};
}