From 3a6fbd2f895a97ca742e4487dcc787a58b3a4321 Mon Sep 17 00:00:00 2001 From: Daniel Thoren Date: Mon, 8 Sep 2025 13:55:39 +0200 Subject: [PATCH] fix(macos): set darwin state-version to 6 :bug: --- nixos/hosts/macos.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/hosts/macos.nix b/nixos/hosts/macos.nix index 5431a8f..6321b37 100644 --- a/nixos/hosts/macos.nix +++ b/nixos/hosts/macos.nix @@ -74,5 +74,7 @@ ]; # Keep for darwin as well (tracks defaults across upgrades) - system.stateVersion = "25.05"; + # current max per nix-darwin; bump only if a release notes says so + system.stateVersion = 6; + }