diff options
author | tdback <tyler@tdback.net> | 2025-01-10 19:20:18 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-01-10 19:20:18 -0500 |
commit | b8e2eb59a2b84820719e5f6f334fbfbc05019c52 (patch) | |
tree | f34acba50e860961c7660a1021264613e9531ef1 /users/tdback/modules/alacritty/default.nix | |
parent | 91646e9d50a55e21141f98b4fb396296e22c052a (diff) |
feat: retire x11 and go full COSMIC/wayland on workstations
Diffstat (limited to 'users/tdback/modules/alacritty/default.nix')
-rw-r--r-- | users/tdback/modules/alacritty/default.nix | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/users/tdback/modules/alacritty/default.nix b/users/tdback/modules/alacritty/default.nix deleted file mode 100644 index 6614030..0000000 --- a/users/tdback/modules/alacritty/default.nix +++ /dev/null @@ -1,66 +0,0 @@ -{ 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"; - }; - }; - }; - }; -} |