From b0cb0d4227987de6c7177c42a7a2b0af016b46da Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 19 Sep 2021 19:35:48 -0400 Subject: [PATCH] feat: add fish to environment shells --- users/profiles/shells/fish.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/users/profiles/shells/fish.nix b/users/profiles/shells/fish.nix index 9ea16f1..82b1201 100644 --- a/users/profiles/shells/fish.nix +++ b/users/profiles/shells/fish.nix @@ -1,4 +1,4 @@ -{ config, lib, ... }: { +{ config, lib, pkgs, ... }: { programs = { fish = { enable = true; @@ -8,4 +8,6 @@ starship.enableFishIntegration = lib.mkIf config.programs.starship.enable true; }; + + environment.shells = [ pkgs.fish ]; }