home(foot): set term variable to something sane

This commit is contained in:
514fpv 2024-01-04 23:53:44 +08:00
parent 468d302d19
commit 60650ab55d
Signed by: koishi
SSH key fingerprint: SHA256:VkIdW3jUIiqecV2WNAje2fGU5lEhN0XZ58DN0NS4pv0

9
home/foot/home.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs
, lib
, config
, ... }: with lib; mkIf config.passthrough.gui {
programs.foot = {
enable = true;
settings.main.term = "xterm-256color";
};
}