From 82d460e08eab8216c7575d3bd0a58c8c4297d579 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Mon, 7 Sep 2026 17:42:46 -0400 Subject: [PATCH] Update packages. --- nix/configuration/configuration.nix | 1 + nix/configuration/flake.lock | 6 +++--- nix/kubernetes/flake.lock | 6 +++--- nix/kubernetes/roles/kubernetes/default.nix | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/nix/configuration/configuration.nix b/nix/configuration/configuration.nix index 59ee84f..c8a7bbf 100644 --- a/nix/configuration/configuration.nix +++ b/nix/configuration/configuration.nix @@ -273,6 +273,7 @@ in } ); }) + (disableTests "ada") # test failing with http url is not idempotent. ]; # This option defines the first version of NixOS you have installed on this particular machine, diff --git a/nix/configuration/flake.lock b/nix/configuration/flake.lock index 191c467..8a69d3d 100644 --- a/nix/configuration/flake.lock +++ b/nix/configuration/flake.lock @@ -185,11 +185,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1788531059, - "narHash": "sha256-hLD4l3QOGBQhkVp3mQ2lJ/YbEi99qUgKapb40KovZ88=", + "lastModified": 1788752844, + "narHash": "sha256-VaWGJ6+cIYN2erfSecbRV+4ljI185Ty2wUrXyvQbgOw=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "801bef6abd86b91e51083066b83fb354a11fc640", + "rev": "dc5d91f840324650bac8c379428c7037a416959a", "type": "github" }, "original": { diff --git a/nix/kubernetes/flake.lock b/nix/kubernetes/flake.lock index d9eaf86..d389f89 100644 --- a/nix/kubernetes/flake.lock +++ b/nix/kubernetes/flake.lock @@ -164,11 +164,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1784120854, - "narHash": "sha256-KesHgItiZPgGX740axSiQLcIQ8D24MDqNpkKYWIek8k=", + "lastModified": 1788752844, + "narHash": "sha256-VaWGJ6+cIYN2erfSecbRV+4ljI185Ty2wUrXyvQbgOw=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "753cc8a3a87467296ddd1fa93f0cc3e81120ee46", + "rev": "dc5d91f840324650bac8c379428c7037a416959a", "type": "github" }, "original": { diff --git a/nix/kubernetes/roles/kubernetes/default.nix b/nix/kubernetes/roles/kubernetes/default.nix index 0f268d8..ab30df2 100644 --- a/nix/kubernetes/roles/kubernetes/default.nix +++ b/nix/kubernetes/roles/kubernetes/default.nix @@ -21,7 +21,7 @@ assertions = [ { # Kubernetes should only upgrade 1 minor version at a time, so this assert is here to prevent unwittingly jumping versions. - assertion = lib.hasPrefix "1.36." pkgs.kubernetes.version; + assertion = lib.hasPrefix "1.37." pkgs.kubernetes.version; message = "Unexpected Kubernetes package version: ${pkgs.kubernetes.version}"; } ];