Overwrite kitty command

This commit is contained in:
SebastianStork 2024-11-27 10:28:03 +01:00
parent cd4168842d
commit ece7731cc7

View file

@ -2,6 +2,7 @@
config, config,
pkgs, pkgs,
lib, lib,
wrappers,
... ...
}: }:
{ {
@ -33,10 +34,15 @@
{ {
cat = "bat --plain --theme=${theme}"; cat = "bat --plain --theme=${theme}";
}; };
kittyAlias = {
kitty = lib.getExe (wrappers.kitty { inherit (config.myConfig.de) theme; });
};
in in
lib.mkMerge [ lib.mkMerge [
lsAliases lsAliases
catAlias catAlias
kittyAlias
]; ];
}; };
} }