22 lines
268 B
Nix
22 lines
268 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.foot = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
main = {
|
||
|
pad = "8x8 center";
|
||
|
};
|
||
|
|
||
|
mouse = {
|
||
|
hide-when-typing = "yes";
|
||
|
};
|
||
|
|
||
|
scrollback = {
|
||
|
lines = 10000;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|