nixos-config/home-manager/stvnliu/programs/foot.nix
Zhongheng Liu b60c28d972
chore: spring cleaning
purge unused files
fmt according to alejandra syntax
2024-12-17 00:51:29 +02:00

18 lines
273 B
Nix

{
pkgs,
config,
lib,
...
}: {
programs.foot = {
enable = true;
settings = {
main = {
term = "xterm-256color";
dpi-aware = lib.mkForce "yes";
};
mouse = {hide-when-typing = "yes";};
};
server.enable = true;
};
}