2021-04-07 16:18:09 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.kitty = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
scrollback_lines = 10000;
|
|
|
|
enable_audio_bell = false;
|
|
|
|
update_check_interval = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
font.name = "DejaVu Sans";
|
|
|
|
font.size = 8;
|
|
|
|
|
|
|
|
keybindings = {
|
|
|
|
"ctrl+c" = "copy_or_interrupt";
|
|
|
|
"ctrl+f>2" = "set_font_size 20";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-04-29 00:24:22 +02:00
|
|
|
nixpkgs.overlays =
|
|
|
|
[ (self: super: { kitty = pkgs.writeScriptBin "dummy-kitty" ""; }) ];
|
|
|
|
|
2021-04-07 16:18:09 +02:00
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.config/kitty/kitty.conf
|
|
|
|
assertFileContent \
|
|
|
|
home-files/.config/kitty/kitty.conf \
|
|
|
|
${./example-settings-expected.conf}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|