diff --git a/common/home.nix b/common/home.nix index 0979a43..53d3c40 100644 --- a/common/home.nix +++ b/common/home.nix @@ -425,7 +425,40 @@ ''; }; - programs.alacritty.enable = true; + programs.alacritty = { + enable = true; + settings = { + window = { + dimensions = { + columns = 0; + lines = 0; + }; + }; + colors.bright = { + blue = "0xb399ff"; + cyan = "0x99e6ff"; + green = "0x89f5a4"; + magenta = "0xe699ff"; + red = "0xff809f"; + white = "0xffffff"; + yellow = "0xffffb3"; + }; + colors.normal = { + black = "0x000000"; + blue = "0x794dff"; + cyan = "0x33ccff"; + green = "0x13ec49"; + magenta = "0xcc33ff"; + red = "0xff0040"; + white = "0xffffff"; + yellow = "0xffff4d"; + }; + colors.primary = { + background = "0x000000"; + foreground = "0xffffff"; + }; + }; + }; services.mako = { enable = true;