about summary refs log tree commit diff
path: root/home/terminal/alacritty/default.nix
blob: a16b9291d178058e9ff768e5e42509d65083a4d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ config, lib, pkgs, ... }:
let cfg = config.my.home.terminal;
in {
  config = lib.mkIf (cfg.program == "alacritty") {
    programs.alacritty = {
      enable = true;

      settings = {
        env = { TERM = "xterm-256color"; };
        live_config_reload = true;
        draw_bold_text_with_bright_colors = true;
        selection = { save_to_clipboard = true; };
        font = { size = 12; };
        colors = {
          primary = {
            foreground = "#2E3436";
            background = "#EEEEEE";
          };
        };
        cursor = {
          style.blinking = "Never";
          unfocused_hollow = true;
        };
      };
    };
  };
}