2024-06-12 18:09:56 +07:00
|
|
|
{ config, lib, ... }:
|
|
|
|
let
|
|
|
|
cfg = config.profile.kitty;
|
|
|
|
in
|
2024-06-12 09:54:11 +07:00
|
|
|
{
|
2024-06-12 18:09:56 +07:00
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
programs.kitty.enable = true;
|
2024-06-12 09:54:11 +07:00
|
|
|
|
2024-06-12 18:09:56 +07:00
|
|
|
home.file.".config/kitty" = {
|
|
|
|
source = ./.;
|
|
|
|
recursive = true;
|
|
|
|
};
|
2024-06-12 09:54:11 +07:00
|
|
|
};
|
|
|
|
}
|