From b8e2eb59a2b84820719e5f6f334fbfbc05019c52 Mon Sep 17 00:00:00 2001 From: tdback Date: Fri, 10 Jan 2025 19:20:18 -0500 Subject: feat: retire x11 and go full COSMIC/wayland on workstations --- users/tdback/retired/alacritty/default.nix | 66 ++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 users/tdback/retired/alacritty/default.nix (limited to 'users/tdback/retired/alacritty/default.nix') diff --git a/users/tdback/retired/alacritty/default.nix b/users/tdback/retired/alacritty/default.nix new file mode 100644 index 0000000..6614030 --- /dev/null +++ b/users/tdback/retired/alacritty/default.nix @@ -0,0 +1,66 @@ +{ pkgs, ... }: +{ + programs.alacritty = { + enable = true; + package = pkgs.unstable.alacritty; + settings = { + env.TERM = "xterm-256color"; + mouse.hide_when_typing = true; + scrolling.history = 10000; + window = { + decorations = "None"; + opacity = 1.0; + title = "Alacritty"; + padding.x = 4; + }; + cursor.style.blinking = "Never"; + font = { + size = 14.0; + normal = { + family = "Iosevka Comfy Motion Fixed"; + style = "Regular"; + }; + italic = { + family = "Iosevka Comfy Motion Fixed"; + style = "Italic"; + }; + bold = { + family = "Iosevka Comfy Motion Fixed"; + style = "Bold"; + }; + bold_italic = { + family = "Iosevka Comfy Motion Fixed"; + style = "Bold Italic"; + }; + }; + # Tomorrow Night Bright colorscheme. + colors = { + draw_bold_text_with_bright_colors = true; + primary = { + background = "#000000"; + foreground = "#eaeaea"; + }; + normal = { + black = "#000000"; + red = "#d54e53"; + green = "#b9ca4a"; + yellow = "#e6c547"; + blue = "#7aa6da"; + magenta = "#c397d8"; + cyan = "#70c0ba"; + white = "#424242"; + }; + bright = { + black = "#666666"; + red = "#ff3334"; + green = "#9ec400"; + yellow = "#e7c547"; + blue = "#7aa6da"; + magenta = "#b77ee0"; + cyan = "#54ced6"; + white = "#2a2a2a"; + }; + }; + }; + }; +} -- cgit v1.2.3