Merge pull request #29765 from nlewo/pr/docker-nix-pager-env-var
dockerTools.examples.nix: set NIX_PAGER=cat environment variable
This commit is contained in:
commit
756698f0a7
1 changed files with 6 additions and 4 deletions
|
@ -107,11 +107,13 @@ rec {
|
|||
nix = buildImageWithNixDb {
|
||||
name = "nix";
|
||||
contents = [
|
||||
# nix-store -qR uses the 'more' program which is not included in
|
||||
# the pkgs.nix dependencies. We then have to manually get it
|
||||
# from the 'eject' package:/
|
||||
pkgs.eject
|
||||
# nix-store uses cat program to display results as specified by
|
||||
# the image env variable NIX_PAGER.
|
||||
pkgs.coreutils
|
||||
pkgs.nix
|
||||
];
|
||||
config = {
|
||||
Env = [ "NIX_PAGER=cat" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue