diff options
author | tdback <tyler@tdback.net> | 2025-01-16 20:19:38 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-01-16 20:19:38 -0500 |
commit | 05eca99c7e169d98676f9997393b347e3754d113 (patch) | |
tree | 63d8c68ce4dc463031db525eb8296de36b099432 /users/tdback/retired/alacritty | |
parent | 88017f5a874478dd82f306a5df88c38a8d06fcb6 (diff) |
chore: move retired modules into modules subdir
Diffstat (limited to 'users/tdback/retired/alacritty')
-rw-r--r-- | users/tdback/retired/alacritty/default.nix | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/users/tdback/retired/alacritty/default.nix b/users/tdback/retired/alacritty/default.nix deleted file mode 100644 index a18239a..0000000 --- a/users/tdback/retired/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"; - }; - }; - }; - }; -} |