1
Fork 0
nixos-system-config/users/hu/packages/foot.nix

27 lines
341 B
Nix
Raw Normal View History

2024-06-23 14:40:05 +02:00
{ ... }:
{
programs.foot = {
enable = true;
settings = {
main = {
pad = "8x8 center";
2024-06-23 14:40:05 +02:00
font = "Go Mono Nerd Font:size=12";
};
mouse = {
hide-when-typing = "yes";
};
scrollback = {
lines = 10000;
};
2024-06-23 14:40:05 +02:00
colors = {
alpha = 0.9;
};
};
};
}