about summary refs log tree commit diff
path: root/users/fcuny/desktop/terminal.nix
blob: 9682e8a280d803c3106c95a19c28634331737852 (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, pkgs, lib, ...}:

{
  programs.alacritty = {
    enable = true;

    settings = {
      env = {
        TERM = "xterm-256color";
        WINIT_X11_SCALE_FACTOR = "1.2";
      };
      colors = {
        primary = {
          background = "#ffffff";
          foreground = "#000000";
        };
      };
      draw_bold_text_with_bright_colors = true;
      selection = {
        save_to_clipboard = true;
      };
      font = {
        size = 12;
      };
    };
  };
}