13 lines
257 B
Nix
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";
|
|
};
|
|
};
|
|
}
|