aboutsummaryrefslogtreecommitdiff
path: root/users/tdback/modules/alacritty
diff options
context:
space:
mode:
Diffstat (limited to 'users/tdback/modules/alacritty')
-rw-r--r--users/tdback/modules/alacritty/default.nix7
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";