From cc09b2f70f4157c0157c5784081206ab54a4b8ca Mon Sep 17 00:00:00 2001 From: fqbn207 Date: Mon, 3 Feb 2025 10:44:47 +0100 Subject: [PATCH] PogChamp --- modules/home/nix/alacritty.nix | 57 +++++++++++++++++++++++----------- 1 file changed, 39 insertions(+), 18 deletions(-) diff --git a/modules/home/nix/alacritty.nix b/modules/home/nix/alacritty.nix index 4481564..3f86646 100644 --- a/modules/home/nix/alacritty.nix +++ b/modules/home/nix/alacritty.nix @@ -1,28 +1,49 @@ { config, pkgs, ... }: { programs.alacritty = { - enable = true; - settings = { - window.dimensions = { - lines = 4; - columns = 200; + enable = true; + settings = { + window.dimensions = { + lines = 4; + columns = 200; + }; + font = { + size = 17; + normal = { + family = "TerminessNerdFont"; + style = "Regular"; }; - font = { - size = 17; - normal = { - family = "FantasqueSansMono"; - style = "Regular"; - }; + }; + terminal = { + shell = "tmux"; + }; + colors = { + primary = { + foreground = "#f2f4f8"; + background = "#121212"; }; - terminal = { - shell = "tmux"; + normal = { + black = "#121212"; + red = "#ee5396"; + green = "#25be6a"; + yellow = "#08bdba"; + blue = "#78a9ff"; + magenta = "#be95ff"; + cyan = "#33b1ff"; + white = "#dfdfe0"; }; - colors = { - primary = { - foreground = "#FFFFFF"; - background = "#121212"; - }; + bright = { + black = "#525252"; + red = "#ff7eb6"; + green = "#42be65"; + yellow = "#3ddbd9"; + blue = "#82cfff"; + magenta = "#df99ff"; + cyan = "#6ea6ff"; + white = "#ffffff"; }; }; }; +}; + }