nix-home/home/modules/programs/my-kitty/linux.nix

12 lines
236 B
Nix
Raw Normal View History

{ 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";
};
}