nixos-config/modules/programs/alacritty.nix

30 lines
605 B
Nix
Raw Normal View History

2022-09-17 16:50:50 +02:00
#
# Terminal Emulator
#
# Hardcoded as terminal for rofi and doom emacs
{ pkgs, ... }:
{
2022-10-09 14:01:59 +02:00
home.packages = [ pkgs.alacritty ];
2022-09-17 16:50:50 +02:00
programs = {
alacritty = {
enable = true;
2022-10-09 14:01:59 +02:00
package = pkgs.alacritty;
2022-09-17 16:50:50 +02:00
settings = {
2024-10-05 10:32:00 +02:00
env.term = "screen-256color";
2022-09-17 16:50:50 +02:00
font = rec { # Font - Laptop has size manually changed at home.nix
2024-05-02 14:16:25 +02:00
#normal.family = "FiraCode Nerd Font";
normal.family = "Cascadia Code";
#normal.family = "Intel One Mono";
#bold = { style = "Bold"; };
2022-09-17 16:50:50 +02:00
# size = 8;
};
};
};
};
}