14 lines
187 B
Nix
14 lines
187 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [ ./default.nix ];
|
|
programs.alacritty.settings.window = {
|
|
padding = {
|
|
x = 10;
|
|
y = 10;
|
|
};
|
|
decorations = "none";
|
|
opacity = 0.8;
|
|
};
|
|
}
|