1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-16 13:28:16 +00:00
nix-darwin/tests/environment-terminfo.nix
2022-10-19 15:09:28 -06:00

10 lines
207 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
test = ''
echo checking /usr/share/terminfo in environment >&2
grep 'export TERMINFO=.*:/usr/share/terminfo' ${config.system.build.setEnvironment}
'';
}