nixos/home/modules/fish.nix

11 lines
215 B
Nix
Raw Normal View History

2024-02-29 04:52:51 +00:00
{ inputs, ... }:
{
programs.fish = {
enable = true;
interactiveShellInit =
builtins.readFile "${inputs.fish_theme}/fish_prompt.fish" + "\n" +
2024-02-29 04:56:42 +00:00
builtins.readFile ../fish/config.fish
2024-02-29 04:52:51 +00:00
;
};
}