10 lines
160 B
Nix
10 lines
160 B
Nix
|
{ pkgs
|
||
|
, lib
|
||
|
, config
|
||
|
, ... }: with lib; mkIf config.passthrough.gui {
|
||
|
programs.foot = {
|
||
|
enable = true;
|
||
|
settings.main.term = "xterm-256color";
|
||
|
};
|
||
|
}
|