Some tweaks to increase friendliness of linux kitty
This commit is contained in:
parent
6b18ad64f4
commit
dff7e69dab
4 changed files with 46 additions and 52 deletions
11
home/modules/programs/my-kitty/linux.nix
Normal file
11
home/modules/programs/my-kitty/linux.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue