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]: 90cb787644

Fixes: efd80454b4 ("flake: update nixpkgs input")
This commit is contained in:
NAHO 2025-11-17 11:06:09 +01:00
parent 628e990dde
commit dcf49c0c55
No known key found for this signature in database
GPG key ID: BFB5D5E3F4C95185

View file

@ -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)