query
On this page

maybeEnv

lib.misc.maybeEnv

Docs pulled from | This Revision | about 2 hours ago


returns default if env var is not set


Noogle detected

Aliases

Implementation

The following is the current implementation of this function.

maybeEnv = name: default:
    let value = builtins.getEnv name; in
    if value == "" then default else value;