fix(foot): set term variable to something sane

This commit is contained in:
514fpv 2024-01-04 23:53:44 +08:00
parent 13a624b5c0
commit c5525a12fc
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

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";
};
}