20 lines
391 B
Nix
20 lines
391 B
Nix
|
{...}: {
|
||
|
stylix.targets.alacritty.enable = true;
|
||
|
programs.alacritty = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
window = {
|
||
|
dynamic_title = true;
|
||
|
padding = {
|
||
|
x = 10;
|
||
|
y = 10;
|
||
|
};
|
||
|
decorations = "none";
|
||
|
};
|
||
|
selection.save_to_clipboard = true;
|
||
|
live_config_reload = true;
|
||
|
mouse.hide_when_typing = true;
|
||
|
};
|
||
|
};
|
||
|
}
|