From 9497b67ef9e6f397ba146cc4c12fec8e9ecae7b2 Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Fri, 5 Sep 2025 13:38:29 -0500 Subject: allow same configurations for fish in bash --- modules/terminal/options.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'modules/terminal/options.nix') diff --git a/modules/terminal/options.nix b/modules/terminal/options.nix index f7510d0..8799c0b 100644 --- a/modules/terminal/options.nix +++ b/modules/terminal/options.nix @@ -25,11 +25,9 @@ in { default = let cfg = config.collinux.terminal.shells; in - if (cfg.fish.enable && !cfg.bash.enable) + if cfg.fish.enable then pkgs.fish - else if (!cfg.fish.enable && cfg.bash.enable) - then pkgs.bash - else null; + else pkgs.bash; }; }; -- cgit v1.3.1