nixos/home/foot/home.nix
2024-01-09 17:46:33 +08:00

11 lines
213 B
Nix

{ pkgs
, lib
, config
, ... }: with lib; mkIf config.passthrough.gui {
programs.foot = {
enable = true;
settings.main.term = "xterm-256color";
settings.main.font = "DejaVu Sans Mono:size=11";
};
}