feat: alacritty

This commit is contained in:
s-prechtl 2024-09-15 00:23:42 +02:00
parent 3f5538d774
commit 71108f1763
2 changed files with 43 additions and 0 deletions

View file

@ -8,6 +8,7 @@
../../modules/home-manager/git.nix ../../modules/home-manager/git.nix
../../modules/home-manager/wofi.nix ../../modules/home-manager/wofi.nix
../../modules/home-manager/waybar.nix ../../modules/home-manager/waybar.nix
../../modules/home-manager/alacritty.nix
../../modules/home-manager/zsh.nix ../../modules/home-manager/zsh.nix
]; ];
home.username = "sprechtl"; home.username = "sprechtl";

View file

@ -0,0 +1,42 @@
{ config, pkgs, ... }:
{
programs.alacritty = {
enable = true;
settings = {
colors = {
bright = {
black = "#928374";
blue = "#83a598";
cyan = "#8ec07c";
green = "#b8bb26";
magenta = "#d3869b";
red = "#fb4934";
white = "#ebdbb2";
yellow = "#fabd2f";
};
normal = {
black = "#282828";
blue = "#458588";
cyan = "#689d6a";
green = "#98971a";
magenta = "#b16286";
red = "#cc241d";
white = "#a89984";
yellow = "#d79921";
};
primary = {
background = "#282828";
foreground = "#ebdbb2";
};
};
env = {
TERM = "xterm-256color";
};
font = {
size = 12.0;
normal.family = "JetBrainsMono Nerd Font Mono";
};
};
};
}