Some tweaks to increase friendliness of linux kitty

This commit is contained in:
Natsu Kagami 2022-06-11 11:59:56 -04:00
parent 6b18ad64f4
commit dff7e69dab
Signed by: nki
GPG key ID: 7306B3D3C3AD6E51
4 changed files with 46 additions and 52 deletions

View file

@ -0,0 +1,11 @@
{ config, pkgs, lib, ... }:
let
cfg = config.nki.programs.kitty;
in
with lib;
{
programs.kitty = mkIf (cfg.enable && pkgs.stdenv.isLinux) {
# set the shell
settings.shell = "${config.programs.fish.package}/bin/fish";
};
}