29 lines
583 B
Nix
29 lines
583 B
Nix
#
|
|
# Terminal Emulator
|
|
#
|
|
|
|
# Hardcoded as terminal for rofi and doom emacs
|
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
home.packages = [ pkgs.alacritty ];
|
|
|
|
programs = {
|
|
alacritty = {
|
|
enable = true;
|
|
#settings = {
|
|
# env.term = "screen-256color";
|
|
# font = rec { # Font - Laptop has size manually changed at home.nix
|
|
# #normal.family = "FiraCode Nerd Font";
|
|
# normal.family = "Cascadia Code";
|
|
# #normal.family = "Intel One Mono";
|
|
# #bold = { style = "Bold"; };
|
|
# # size = 8;
|
|
# };
|
|
#};
|
|
};
|
|
};
|
|
}
|