Simplify $NIX_PATH evaluation.
This commit is contained in:
parent
7c1f7aa9a1
commit
081d10bc21
2 changed files with 9 additions and 2 deletions
|
@ -1,10 +1,16 @@
|
|||
{ lib, ... }:
|
||||
|
||||
with builtins;
|
||||
with lib;
|
||||
|
||||
let
|
||||
fn = import ./fn.nix { inherit lib; };
|
||||
# hostName can be set with -I hostName=$HOSTNAME, defaults to the contents of /secret/hostName
|
||||
hostName = (findFirst (elem: elem.prefix == "hostName") { path = (fileContents /secret/hostName); } builtins.nixPath).path;
|
||||
hostName = let
|
||||
hostVal = (tryEval <hostName>).value;
|
||||
in fn.ifelse (hostVal != false)
|
||||
hostVal
|
||||
(fileContents /secret/hostName);
|
||||
machinePath = (builtins.toPath ( ./machines + ("/" + hostName)));
|
||||
machineConf = machinePath + "/configuration.nix";
|
||||
machineOpts = machinePath + "/options.nix";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue