14 lines
200 B
Nix
14 lines
200 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [ ./default.nix ];
|
|
programs.alacritty.settings.window = {
|
|
dimensions = {
|
|
columns = 80;
|
|
lines = 24;
|
|
};
|
|
decorations = "full";
|
|
opacity = 1.0;
|
|
};
|
|
}
|