Working flake check

This commit is contained in:
2021-09-30 08:40:47 -07:00
parent 4df4d2e7db
commit b690935dea
31 changed files with 246 additions and 209 deletions
+8 -5
View File
@@ -2,12 +2,15 @@
with lib;
{
options.instance = {
options.instance = with types; {
hostname = mkOption {
type = types.str;
description = ''
Hostname of this specific host (without domain).
'';
type = str;
description = "Hostname of this specific host (without domain).";
};
build-timestamp = mkOption {
type = int;
description = "Timestamp associated with the build. Used for e.g. DNS serials.";
};
};
}