21 lines
346 B
Nix
21 lines
346 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs.foot = {
|
|
enable = true;
|
|
settings = {
|
|
main = {
|
|
term = "xterm-256color";
|
|
#font = "${config.desktopFontFullName}:size=24";
|
|
dpi-aware = lib.mkForce "yes";
|
|
};
|
|
mouse = {
|
|
hide-when-typing = "yes";
|
|
};
|
|
};
|
|
server.enable = true;
|
|
};
|
|
}
|