mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
34 lines
694 B
Nix
34 lines
694 B
Nix
|
# This module manages the terminfo database
|
||
|
# and its integration in the system.
|
||
|
{ config, ... }:
|
||
|
{
|
||
|
config = {
|
||
|
|
||
|
environment.pathsToLink = [
|
||
|
"/share/terminfo"
|
||
|
];
|
||
|
|
||
|
environment.etc."terminfo" = {
|
||
|
source = "${config.system.path}/share/terminfo";
|
||
|
};
|
||
|
|
||
|
environment.profileRelativeEnvVars = {
|
||
|
TERMINFO_DIRS = [ "/share/terminfo" ];
|
||
|
};
|
||
|
|
||
|
environment.extraInit = ''
|
||
|
|
||
|
# reset TERM with new TERMINFO available (if any)
|
||
|
export TERM=$TERM
|
||
|
'';
|
||
|
|
||
|
security.sudo.extraConfig = ''
|
||
|
|
||
|
# Keep terminfo database for root and %wheel.
|
||
|
Defaults:root,%wheel env_keep+=TERMINFO_DIRS
|
||
|
Defaults:root,%wheel env_keep+=TERMINFO
|
||
|
'';
|
||
|
|
||
|
};
|
||
|
}
|