dotfiles/config/xsession/terminal.nix

33 lines
557 B
Nix
Raw Normal View History

{ pkgs, config, lib, ...}:
{
imports = [ ./zsh/zsh.nix ];
2020-05-12 14:12:41 +02:00
programs.kitty = {
enable = true;
settings = ''
2020-05-12 10:58:42 +02:00
#term xterm-256color
font_family monospace
font_size 12.0
background_opacity 0.7
2020-05-12 10:58:42 +02:00
clear_all_shortcuts yes
2020-05-12 10:58:42 +02:00
map ctrl+shift+c copy_to_clipboard
map ctrl+shift+v paste_from_clipboard
2020-05-12 10:58:42 +02:00
map ctrl+plus change_font_size all +2.0
map ctrl+shift+plus change_font_size all -2.0
'';
};
2020-05-12 14:12:41 +02:00
home.packages = with pkgs; [
gnome3.gnome-terminal
kitty
2019-01-10 14:25:23 +01:00
pkgs.ncurses.dev
];
}