shells/bash: use kitty directly instead of from path

This commit is contained in:
Infinidoge 2023-09-09 19:20:50 -04:00
parent 8ed8f617fa
commit 7a47e6d184

View file

@ -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)
'';
};