Unverified Commit 03e976eb authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

nixos/headscale: default extra_records to null to fix using extra_records_path (#485340)

parents faa7f0db 9c61d38d
Loading
Loading
Loading
Loading
+25 −23
Original line number Diff line number Diff line
@@ -350,7 +350,8 @@ in
              };

              extra_records = lib.mkOption {
                type = lib.types.listOf (
                type = lib.types.nullOr (
                  lib.types.listOf (
                    lib.types.submodule {
                      options = {
                        name = lib.mkOption {
@@ -373,8 +374,9 @@ in
                        };
                      };
                    }
                  )
                );
                default = [ ];
                default = null;
                description = ''
                  Extra DNS records to expose to clients.
                '';