11 lines
219 B
Nix
11 lines
219 B
Nix
|
{ inputs, ... }:
|
||
|
{
|
||
|
programs.fish = {
|
||
|
enable = true;
|
||
|
interactiveShellInit =
|
||
|
builtins.readFile "${inputs.fish_theme}/fish_prompt.fish" + "\n" +
|
||
|
builtins.readFile ./home/fish/config.fish
|
||
|
;
|
||
|
};
|
||
|
}
|