14 lines
198 B
Nix
14 lines
198 B
Nix
|
{...}: {
|
||
|
home-manager.users.joy.programs.alacritty = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
window = {
|
||
|
padding = {
|
||
|
x = 5;
|
||
|
y = 5;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|