aboutsummaryrefslogtreecommitdiff
path: root/modules/programs/kitty.nix
blob: 3eeacdc44cecd41b9b205c79982ce24cfef92c57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  config,
	username,
  lib,
  ...
}:

{
  options.nx.programs.kitty.enable = lib.mkEnableOption "Enable git";
  config = lib.mkIf config.nx.programs.kitty.enable {
		home-manager.users.${username} = {
			programs.kitty = {
				enable = true;
				enableGitIntegration = true;
				settings = {
					enable_audio_bell = false;
				};
			};
		};
 };
}