about summary refs log tree commit diff
path: root/users/fcuny/desktop/terminal.nix
blob: 293e1f3ca2870d0d77669b62eacefa5a0e8f1c72 (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
28
29
30
31
32
33
34
35
36
37
{ config, pkgs, lib, ...}:

{
  programs.alacritty = {
    enable = true;

    settings = {
      env = {
        TERM = "xterm-256color";
      };
      colors = {
        primary = {
          background = "#ffffff";
          foreground = "#000000";
        };
      };
      live_config_reload = true;
      draw_bold_text_with_bright_colors = true;
      selection = {
        save_to_clipboard = true;
      };
      font = {
        size = 12;
      };
      cursor = {
        style.blinking = "Never";
        unfocused_hollow = true;
      };
      window = {
        padding = {
          x = 5;
          y = 5;
        };
      };
    };
  };
}