20 lines
269 B
Nix
20 lines
269 B
Nix
{
|
|
pkgs,
|
|
shell,
|
|
...
|
|
}: {
|
|
programs.kitty = {
|
|
enable = true;
|
|
package = pkgs.kitty;
|
|
shellIntegration.enableFishIntegration =
|
|
if shell == "fish"
|
|
then true
|
|
else false;
|
|
};
|
|
|
|
imports = [
|
|
./extra-config.nix
|
|
./settings.nix
|
|
];
|
|
}
|