diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-01 15:00:03 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-01 15:00:03 +0200 |
commit | 68fd599dee4cd39ffd0f12f5ec468694307af668 (patch) | |
tree | 432264a3a4d21d614d11332a925cb111d2cacd8f /hosts/by-name/server3/configuration.nix | |
parent | tests/dns: Avoid tracing the name-server interfaces (diff) | |
download | nixos-server-68fd599dee4cd39ffd0f12f5ec468694307af668.zip |
zones/vhack.eu: Make it obvious, that the serial number must be changed
The comment alone would probably suffice, but having a convenient function that makes it obvious *what* part of the serial number you are actually supposed to change seems quite useful, when trying to reduce the possibilities of forgetting it.
Diffstat (limited to 'hosts/by-name/server3/configuration.nix')
-rw-r--r-- | hosts/by-name/server3/configuration.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/by-name/server3/configuration.nix b/hosts/by-name/server3/configuration.nix index 9ad73ea..a89e047 100644 --- a/hosts/by-name/server3/configuration.nix +++ b/hosts/by-name/server3/configuration.nix @@ -1,4 +1,4 @@ -{...}: { +{lib, ...}: { imports = [ ./networking.nix # network configuration that just works ./hardware.nix @@ -18,7 +18,7 @@ "92.60.38.179" "2a03:4000:33:25b::4f4e" ]; - zones = import ../../../zones {}; + zones = import ../../../zones {inherit lib;}; }; fail2ban.enable = true; nix-sync = { |