mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-26 02:52:18 +00:00
21 lines
357 B
Nix
21 lines
357 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
kitty-xterm = pkgs.writeShellScriptBin "xterm" ''
|
|
${config.programs.kitty.package}/bin/kitty -1 "$@"
|
|
'';
|
|
in
|
|
{
|
|
home = {
|
|
packages = [ kitty-xterm ];
|
|
sessionVariables = {
|
|
TERMINAL = "kitty -1";
|
|
};
|
|
};
|
|
|
|
programs.kitty = {
|
|
enable = true;
|
|
settings = {
|
|
scrollback_lines = 4000;
|
|
};
|
|
};
|
|
}
|