blob: 487859e6006f0367f8c3c79fa98dd2a88eb8495f (
plain)
1
2
3
4
5
6
7
8
9
10
|
{ 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}
'';
}
|