From 4ba795b57df7cc693f62bbd758647ac7bd54b048 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Sat, 13 Dec 2025 15:38:20 +0100 Subject: [PATCH] Changed the location of stateVersion --- hosts/common/home.nix | 1 - hosts/macos/home.nix | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/common/home.nix b/hosts/common/home.nix index 9926b5b..24c8b83 100644 --- a/hosts/common/home.nix +++ b/hosts/common/home.nix @@ -4,7 +4,6 @@ home = { username = username; homeDirectory = homeDir; - stateVersion = "25.11"; }; imports = [ diff --git a/hosts/macos/home.nix b/hosts/macos/home.nix index e8cf9f4..d45f43f 100644 --- a/hosts/macos/home.nix +++ b/hosts/macos/home.nix @@ -11,6 +11,7 @@ in # Refer to the nixOS host for info about home-manager inherit commonHome; + home.stateVersion = "25.11"; # Allow unfree packages nixpkgs.config.allowUnfree = true;