From 391b8cd1ac2313c1da8dfbb51adb4d976d0b460f Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 14 Sep 2021 13:53:54 -0400 Subject: [PATCH] feat: add Fish config --- users/profiles/shells/fish.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 users/profiles/shells/fish.nix diff --git a/users/profiles/shells/fish.nix b/users/profiles/shells/fish.nix new file mode 100644 index 0000000..9ea16f1 --- /dev/null +++ b/users/profiles/shells/fish.nix @@ -0,0 +1,11 @@ +{ config, lib, ... }: { + programs = { + fish = { + enable = true; + functions = { }; + shellAbbrs = { }; + }; + + starship.enableFishIntegration = lib.mkIf config.programs.starship.enable true; + }; +}