1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-24 15:38:31 +02:00

kitty: add module

PR #1000
This commit is contained in:
ivann 2020-01-14 02:23:20 +01:00 committed by Robert Helgesson
parent 9bddef74df
commit 9ab0d2305c
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
3 changed files with 99 additions and 0 deletions

View File

@ -1318,6 +1318,13 @@ in
A new module is available: 'programs.neomutt'.
'';
}
{
time = "2020-02-23T10:19:48+00:00";
message = ''
A new module is available: 'programs.kitty'.
'';
}
];
};
}

View File

@ -68,6 +68,7 @@ let
(loadModule ./programs/jq.nix { })
(loadModule ./programs/kakoune.nix { })
(loadModule ./programs/keychain.nix { })
(loadModule ./programs/kitty.nix { })
(loadModule ./programs/lesspipe.nix { })
(loadModule ./programs/lsd.nix { })
(loadModule ./programs/man.nix { })

View File

@ -0,0 +1,91 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.kitty;
eitherStrBoolInt = with types; either str (either bool int);
optionalPackage = opt:
optional (opt != null && opt.package != null) opt.package;
toKittyConfig = generators.toKeyValue {
mkKeyValue = key: value:
let
value' = if isBool value then
(if value then "yes" else "no")
else
toString value;
in "${key} ${value'}";
};
toKittyKeybindings = generators.toKeyValue {
mkKeyValue = key: command: "map ${key} ${command}";
};
in {
options.programs.kitty = {
enable = mkEnableOption "Kitty terminal emulator";
settings = mkOption {
type = types.attrsOf eitherStrBoolInt;
default = { };
example = literalExample ''
{
scrollback_lines = 10000;
enable_audio_bell = false;
update_check_interval = 0;
}
'';
description = ''
Configuration written to
<filename>~/.config/kitty/kitty.conf</filename>. See
<link xlink:href="https://sw.kovidgoyal.net/kitty/conf.html" />
for the documentation.
'';
};
font = mkOption {
type = types.nullOr hm.types.fontType;
default = null;
description = "The font to use.";
};
keybindings = mkOption {
type = types.attrsOf types.str;
default = { };
description = "Mapping of keybindings to actions.";
example = literalExample ''
{
"ctrl+c" = "copy_or_interrupt";
"ctrl+f>2" = "set_font_size 20";
}
'';
};
extraConfig = mkOption {
default = "";
type = types.lines;
description = "Additional configuration to add.";
};
};
config = mkIf cfg.enable {
home.packages = [ pkgs.kitty ] ++ optionalPackage cfg.font;
xdg.configFile."kitty/kitty.conf".text = ''
# Generated by Home Manager.
# See https://sw.kovidgoyal.net/kitty/conf.html
${optionalString (cfg.font != null) "font_family ${cfg.font.name}"}
${toKittyConfig cfg.settings}
${toKittyKeybindings cfg.keybindings}
${cfg.extraConfig}
'';
};
}