refactor: Fix warning system renamed to stdenv.hostPlatform.system

This commit is contained in:
UGA Innovation Factory
2025-12-08 23:18:22 +00:00
committed by Hunter Halloran
parent a8c263bac5
commit 6a316489f0

View File

@@ -1,7 +1,7 @@
{ config, lib, pkgs, inputs, modulesPath, ... }:
let
refSystem = inputs.nixpkgs-old-kernel.lib.nixosSystem {
system = pkgs.system;
system = pkgs.stdenv.hostPlatform.system;
modules = [ inputs.nixos-hardware.nixosModules.microsoft-surface-go ];
};
refKernelPackages = refSystem.config.boot.kernelPackages;