From dcf49c0c55c027b3b0d97c9b606526882bc809d1 Mon Sep 17 00:00:00 2001 From: NAHO <90870942+trueNAHO@users.noreply.github.com> Date: Mon, 17 Nov 2025 11:06:09 +0100 Subject: [PATCH] stylix/testbed/default: deprecate pkgs.system Deprecate pkgs.system with pkgs.stdenv.hostPlatform.system, following upstream commit [1] ("aliases: add warnings to deprecated system definitions"). [1]: https://github.com/NixOS/nixpkgs/commit/90cb7876446bf1684ffe40ab7832de0ec1b92991 Fixes: efd80454b484 ("flake: update nixpkgs input") --- stylix/testbed/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stylix/testbed/default.nix b/stylix/testbed/default.nix index ecb02113..cd43da05 100644 --- a/stylix/testbed/default.nix +++ b/stylix/testbed/default.nix @@ -10,7 +10,7 @@ let name: testbed: let system = lib.nixosSystem { - inherit (pkgs) system; + inherit (pkgs.stdenv.hostPlatform) system; modules = [ (lib.modules.importApply ./modules/flake-parts.nix inputs)