nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

alacritty.nix (932B)


      1 {
      2   programs.alacritty = {
      3     enable = true;
      4     settings = {
      5       font = {
      6         size = 11.0;
      7         # draw_bold_text_with_bright_colors = true;
      8         normal = {
      9           family = "JetBrainsMono Nerd Font Mono";
     10           style = "Regular";
     11         };
     12       };
     13       colors = {
     14         primary = {
     15           background = "#1d1f21";
     16           foreground = "#c5c8c6";
     17         };
     18         normal = {
     19           black = "#282a2e";
     20           red = "#a54242";
     21           green = "#8c9440";
     22           yellow = "#de935f";
     23           blue = "#5f819d";
     24           magenta = "#85678f";
     25           cyan = "#5e8d87";
     26           white = "#707880";
     27         };
     28         bright = {
     29           black = "#373b41";
     30           red = "#cc6666";
     31           green = "#b5bd68";
     32           yellow = "#f0c674";
     33           blue = "#81a2be";
     34           magenta = "#b294bb";
     35           cyan = "#8abeb7";
     36           white = "#c5c8c6";
     37         };
     38       };
     39     };
     40   };
     41 }
     42