15 lines
249 B
Nix
Executable file
15 lines
249 B
Nix
Executable file
{ pkgs, ... }:
|
|
{
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
window.dimensions = {
|
|
lines = 22;
|
|
columns = 88;
|
|
};
|
|
font.normal.family = "MesloLGS NF";
|
|
#shell.program = "/bin/zsh";
|
|
};
|
|
|
|
};
|
|
}
|