inputs: { config, ... }: { home-manager.users.minijackson.programs.alacritty = { enable = true; settings = { window = { padding.x = 2; padding.y = 2; }; font.size = 8.0; colors = with config.theme.colors; { primary.background = softBackground; primary.foreground = foreground; normal = { black = background; # TODO: bright white is same #white = "0xa89984"; white = foreground; red = neutralRed; green = neutralGreen; yellow = neutralYellow; blue = neutralBlue; magenta = neutralMagenta; cyan = neutralCyan; }; bright = { black = dimForeground; white = foreground; red = brightRed; green = brightGreen; yellow = brightYellow; blue = brightBlue; magenta = brightMagenta; cyan = brightCyan; }; }; }; }; }