From ed47b8dced9ebcab1bfd4b72aa946733e3e2ff04 Mon Sep 17 00:00:00 2001 From: revol-xut Date: Sun, 29 Oct 2023 00:48:55 +0200 Subject: [PATCH] disabeling dnssec --- flake.nix | 8 ++++++++ modules/traffic-stop-box/configuration.nix | 2 ++ 2 files changed, 10 insertions(+) diff --git a/flake.nix b/flake.nix index 84c016d..0a91605 100644 --- a/flake.nix +++ b/flake.nix @@ -229,10 +229,17 @@ monitoring = true; } { + # Hannover Bredero Hochhaus City id = 8; arch = "aarch64-linux"; monitoring = false; } + { + # Hannover Bredero Hochhaus Wider Area + id = 9; + arch = "aarch64-linux"; + monitoring = false; + } ]; # attribute set of all traffic stop boxes @@ -256,6 +263,7 @@ { packages."aarch64-linux".box8 = self.nixosConfigurations.traffic-stop-box-8.config.system.build.sdImage; + packages."aarch64-linux".box9 = self.nixosConfigurations.traffic-stop-box-9.config.system.build.sdImage; packages."x86_64-linux" = packages; nixosConfigurations = stop_boxes // { diff --git a/modules/traffic-stop-box/configuration.nix b/modules/traffic-stop-box/configuration.nix index 98223a1..985972e 100644 --- a/modules/traffic-stop-box/configuration.nix +++ b/modules/traffic-stop-box/configuration.nix @@ -19,5 +19,7 @@ }; }; + services.resolved.dnssec = "false"; + system.stateVersion = "21.11"; # Did you read the comment? }