infrastructure/home/shell/fish.nix
2024-03-31 16:13:09 +02:00

13 lines
257 B
Nix

{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";
};
};
}