aboutsummaryrefslogtreecommitdiff
path: root/home/rices/finals/terminal.nix
blob: ab6270eeb979aaf01c3c885e4219ac4904985f68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{...}: {
  programs.kitty = {
    enable = true;
    font.size = 12;
    font.name = "FiraCode Nerd Font";
    keybindings = {
      "ctrl+shift+n" = "new_os_window_with_cwd";
    };
    settings = {
      confirm_os_window_close = 0;
      hide_window_decorations = true;
    };
  };
  home.sessionVariables = {
    TERMINAL = "kitty";
  };
}