From 29ee06a1aaaf32b49c4ef60eebda4fb194bce2eb Mon Sep 17 00:00:00 2001 From: Liam Malone Date: Sun, 31 Mar 2024 21:05:26 +0100 Subject: [PATCH] alacritty config ported --- modules/home-manager/terminals/alacritty.nix | 47 ++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/modules/home-manager/terminals/alacritty.nix b/modules/home-manager/terminals/alacritty.nix index e69de29..8da254d 100644 --- a/modules/home-manager/terminals/alacritty.nix +++ b/modules/home-manager/terminals/alacritty.nix @@ -0,0 +1,47 @@ +{ config, pkgs, ... }: + +{ + programs.alacritty = { + enable = true; + settings = { + font = { + normal.family = "Iosevka"; + size = 16; + }; + shell = "${pkgs.bash}/bin/bash"; + window = { + lines = 20; + columns = 200; + opacity = 0.40; + }; + colors = { + primary = { + background = "#0c0c0c"; + foreground = "#cccccc"; + }; + normal = { + black = "0x0c0c0c"; + red = "0xc50f1f"; + green = "0x13a10e"; + yellow = "0xc19c00"; + blue = "0x0037da"; + magenta = "0x881798"; + cyan = "0x3a96dd"; + white = "0xcccccc"; + }; + bright = { + black = "0x767676"; + red = "0xe74856"; + green = "0x16c60c"; + yellow = "0xf9f1a5"; + blue = "0x3b78ff"; + magenta = "0xb4009e"; + cyan = "0x61d6d6"; + white = "0xf2f2f2"; + }; + + }; + draw_bold_text_with_bright_colors = true; + }; + }; +}