diff options
author | tdback <tyler@tdback.net> | 2024-12-24 17:06:05 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2024-12-24 17:06:05 -0500 |
commit | 14d926a20dba17466355f2084fc264f746389fe9 (patch) | |
tree | fdc7ff02262566e79b3f1335b50dc7ad1d2e40db /users/tdback/modules/alacritty | |
parent | 59a1630295f209f5e09b9dca49363e6556764887 (diff) |
ensure all home-manager modules are using the latest package version
Diffstat (limited to 'users/tdback/modules/alacritty')
-rw-r--r-- | users/tdback/modules/alacritty/default.nix | 7 |
1 files changed, 1 insertions, 6 deletions
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"; |