nixos-config/modules/programs/alacritty.nix

27 lines
508 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, ... }:
{
programs = {
alacritty = {
enable = true;
settings = {
font = rec { # Font - Laptop has size manually changed at home.nix
normal.family = "Source Code Pro";
bold = { style = "Bold"; };
# size = 8;
};
offset = { # Positioning
x = -1;
y = 0;
};
};
};
};
}