aboutsummaryrefslogtreecommitdiff
path: root/home/rices/finals/terminal.nix
blob: 080e7beed24d88951a597768a1c8006bc1bbae7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{...}: {
  programs.alacritty = {
    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 = "alacritty";
  };
}