mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
10 lines
212 B
Nix
10 lines
212 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
test = ''
|
|
echo checking /usr/share/terminfo in environment >&2
|
|
grep 'export TERMINFO_DIRS=.*:/usr/share/terminfo' ${config.system.build.setEnvironment}
|
|
'';
|
|
}
|