17 lines
265 B
Nix
17 lines
265 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
programs.foot = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
main.pad = "5x5";
|
||
|
bell = {
|
||
|
urgent = false;
|
||
|
notify = false;
|
||
|
visual = false;
|
||
|
};
|
||
|
cursor.blink = true;
|
||
|
mouse.hide-when-typing = true;
|
||
|
};
|
||
|
};
|
||
|
}
|