From 7a47e6d184baebd81d77b869eee809121617efee Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sat, 9 Sep 2023 19:20:50 -0400 Subject: [PATCH] shells/bash: use kitty directly instead of from path --- users/modules/global/shells/bash.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/users/modules/global/shells/bash.nix b/users/modules/global/shells/bash.nix index 7ba4abd..959c25e 100644 --- a/users/modules/global/shells/bash.nix +++ b/users/modules/global/shells/bash.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: { +{ config, pkgs, lib, ... }: { imports = [ ./common.nix ]; programs = { @@ -6,7 +6,7 @@ enable = true; enableVteIntegration = true; initExtra = '' - source <(kitty + complete setup bash) + source <(${lib.getExe config.programs.kitty.package} + complete setup bash) ''; };