From 99459402d2fe8a181d6028e927f720a2b0c0f7dd Mon Sep 17 00:00:00 2001 From: Jo Date: Tue, 16 Dec 2025 02:41:20 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20pkgs.system=20=3D>=20pkgs.?= =?UTF-8?q?stdenv.hostPlatform.system?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/nixos/users/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nixos/users/default.nix b/modules/nixos/users/default.nix index 8805864..d865970 100644 --- a/modules/nixos/users/default.nix +++ b/modules/nixos/users/default.nix @@ -17,7 +17,7 @@ let inherit (self.lib) dirToModuleList; # The identifier of the current system type, e.g. "x86_64-linux" or "aarch64-darwin" - system = pkgs.system; + system = pkgs.stdenv.hostPlatform.system; cfg = config.${namespace}.users; userSubmodule = types.submodule {