infrastructure/home/shell/fish.nix

13 lines
257 B
Nix
Raw Normal View History

2024-03-31 14:13:09 +00:00
{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";
};
};
}