nix-infra/modules/home/fish/default.nix

17 lines
356 B
Nix
Raw Normal View History

2024-03-24 18:02:32 +00:00
{ pkgs, config, lib, ... }: {
2024-03-24 18:02:28 +00:00
programs.fish = {
enable = true;
};
home.file = {
fish_prompt = {
source = ./fish_prompt.fish;
target = ".config/fish/functions/fish_prompt.fish";
};
fish_right_prompt = {
source = ./fish_right_prompt.fish;
target = ".config/fish/functions/fish_right_prompt.fish";
};
};
}