nixos/modules/home/kitty.nix

18 lines
222 B
Nix

{
lib,
osConfig,
pkgs,
...
}:
with lib;
let
cfg = osConfig.modules.hyprland;
in
{
config = mkIf (cfg.terminal == "kitty") {
programs.kitty = {
enable = true;
package = pkgs.kitty;
};
};
}