nix-dotfiles/home/foot.nix

23 lines
360 B
Nix
Raw Normal View History

2024-06-14 14:35:25 +02:00
{ pkgs, lib, ... }:
{
home.packages = with pkgs; [
foot
];
programs.foot.enable = true;
programs.foot.settings = {
2024-09-11 14:57:36 +02:00
2024-06-14 14:35:25 +02:00
main = {
term = "xterm-256color";
2024-06-16 12:22:31 +02:00
font = "0xproto:size=12";
#dpi-aware = "yes";
2024-06-14 14:35:25 +02:00
};
mouse = {
hide-when-typing = "yes";
};
};
}