mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 08:14:00 +01:00
16 lines
232 B
Nix
16 lines
232 B
Nix
|
{
|
||
|
programs.alacritty = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
window = {
|
||
|
padding.x = 10;
|
||
|
padding.y = 10;
|
||
|
};
|
||
|
|
||
|
mouse.hide_when_typing = true;
|
||
|
selection.save_to_clipboard = true;
|
||
|
};
|
||
|
};
|
||
|
}
|