Make the DNS serial correct
This commit is contained in:
parent
8ea09b18f2
commit
96e5205835
11
flake.nix
11
flake.nix
@ -55,9 +55,18 @@
|
||||
];
|
||||
};
|
||||
|
||||
latest-modified-timestamp = head
|
||||
(sort (a: b: a > b)
|
||||
(filter (timestamp: timestamp != null)
|
||||
(map (input: toInt input.lastModifiedDate) inputs)));
|
||||
|
||||
concat-timestamp = timestamp:
|
||||
toInt (substring 0 10 (toString timestamp));
|
||||
|
||||
common-host-config = hostname: hostOpts: let
|
||||
config-dir = ./config;
|
||||
build-timestamp = toInt fudo-entities.lastModifiedDate;
|
||||
build-timestamp =
|
||||
concatTimestamp last-modified-timestamp;
|
||||
in { config, ... }: {
|
||||
imports = [
|
||||
fudo-home.nixosModule
|
||||
|
Loading…
Reference in New Issue
Block a user