2019-05-09 18:28:40 +02:00
|
|
|
{ lib, ... }:
|
2019-02-26 13:44:40 +01:00
|
|
|
|
2020-03-28 20:03:48 +01:00
|
|
|
with builtins;
|
2019-03-17 11:43:14 +01:00
|
|
|
with lib;
|
|
|
|
|
2019-02-26 13:44:40 +01:00
|
|
|
let
|
2020-05-10 17:16:08 +02:00
|
|
|
fn = import (toString ./fn.nix) { inherit lib; };
|
2020-04-01 09:52:39 +02:00
|
|
|
# Cannot use <hostName> here as those evaluations only work with existing paths >.<
|
|
|
|
# hostName and secretPtah can be set with -I hostName=$HOSTNAME and -I secretPath=$SECRETPATH respectively
|
|
|
|
# , defaults to the contents of /secret/hostName
|
2020-05-10 17:16:08 +02:00
|
|
|
secretPath = fn.ifelse ((tryEval (toString <secretPath>)).value != false)
|
|
|
|
(toString <secretPath>)
|
|
|
|
(toString /secret);
|
|
|
|
hostName = (
|
|
|
|
findFirst
|
|
|
|
(elem: elem.prefix == "hostName")
|
|
|
|
{ path = (fileContents "${secretPath}/hostName"); }
|
|
|
|
nixPath
|
2020-04-01 09:52:39 +02:00
|
|
|
).path;
|
2020-05-10 17:16:08 +02:00
|
|
|
machinePath = (builtins.toPath (./machines + ("/" + hostName)));
|
2020-03-29 09:10:14 +02:00
|
|
|
machineFiles = fn.lst { p = machinePath; b = true; };
|
|
|
|
configFiles = fn.lst { p = (toString ./config); b = true; };
|
|
|
|
pkgsFiles = fn.lst { p = (toString ./pkgs); b = true; };
|
|
|
|
serviceFiles = fn.lst { p = (toString ./services); b = true; };
|
2019-03-23 02:50:48 +01:00
|
|
|
in {
|
2019-02-26 13:44:40 +01:00
|
|
|
imports = [
|
2020-03-29 09:10:14 +02:00
|
|
|
./options/machine.nix
|
|
|
|
./services/mailserver/default.nix
|
|
|
|
] ++ machineFiles
|
|
|
|
++ configFiles
|
|
|
|
++ pkgsFiles
|
|
|
|
++ serviceFiles;
|
2019-02-26 13:44:40 +01:00
|
|
|
}
|