summaryrefslogtreecommitdiffstats
path: root/nixos/lib/from-env.nix
blob: 8afca8468058bad9f55173f7016c7045d860c3d3 (plain)
1
2
3
4
5
6
# TODO: remove this file. There is lib.maybeEnv now
name: default:
let
  value = builtins.getEnv name;
in
if value == "" then default else value