From 14d926a20dba17466355f2084fc264f746389fe9 Mon Sep 17 00:00:00 2001 From: tdback Date: Tue, 24 Dec 2024 17:06:05 -0500 Subject: ensure all home-manager modules are using the latest package version --- users/tdback/modules/alacritty/default.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'users/tdback/modules/alacritty') diff --git a/users/tdback/modules/alacritty/default.nix b/users/tdback/modules/alacritty/default.nix index 6955536..6614030 100644 --- a/users/tdback/modules/alacritty/default.nix +++ b/users/tdback/modules/alacritty/default.nix @@ -2,21 +2,18 @@ { programs.alacritty = { enable = true; - package = pkgs.alacritty; + 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 = { @@ -36,11 +33,9 @@ style = "Bold Italic"; }; }; - # Tomorrow Night Bright colorscheme. colors = { draw_bold_text_with_bright_colors = true; - primary = { background = "#000000"; foreground = "#eaeaea"; -- cgit v1.2.3