18 lines
279 B
Nix
18 lines
279 B
Nix
|
{pkgs, ...}: {
|
||
|
programs.foot = {
|
||
|
enable = true;
|
||
|
server.enable = true;
|
||
|
settings = {
|
||
|
main = {
|
||
|
term = "xterm-256color";
|
||
|
shell = "tmux new";
|
||
|
pad = "10x10";
|
||
|
};
|
||
|
|
||
|
mouse = {
|
||
|
hide-when-typing = "yes";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|