feat: add Fish config

This commit is contained in:
Infinidoge 2021-09-14 13:53:54 -04:00
parent a06df36065
commit 391b8cd1ac

View file

@ -0,0 +1,11 @@
{ config, lib, ... }: {
programs = {
fish = {
enable = true;
functions = { };
shellAbbrs = { };
};
starship.enableFishIntegration = lib.mkIf config.programs.starship.enable true;
};
}