diff --git a/hosts/default/home.nix b/hosts/default/home.nix index d6bedbb..bc78619 100644 --- a/hosts/default/home.nix +++ b/hosts/default/home.nix @@ -8,6 +8,7 @@ ../../modules/home-manager/git.nix ../../modules/home-manager/wofi.nix ../../modules/home-manager/waybar.nix + ../../modules/home-manager/alacritty.nix ../../modules/home-manager/zsh.nix ]; home.username = "sprechtl"; diff --git a/modules/home-manager/alacritty.nix b/modules/home-manager/alacritty.nix new file mode 100644 index 0000000..1f2dc4d --- /dev/null +++ b/modules/home-manager/alacritty.nix @@ -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"; + }; + }; + }; +}