chore: Use localSystem.system instead of system

This commit is contained in:
ulic-youthlic 2025-10-18 23:10:53 +08:00
parent 44e6836e0f
commit f822528530
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
7 changed files with 7 additions and 7 deletions

View file

@ -15,7 +15,7 @@
system:
let
pkgs = import nixpkgs {
inherit system;
localSystem = { inherit system; };
};
in
{

View file

@ -16,7 +16,7 @@
let
inherit (pkgs) lib;
pkgs = import nixpkgs {
inherit system;
localSystem = { inherit system; };
config = {
cudaSupport = true;
allowUnfree = true;

View file

@ -40,7 +40,7 @@
let
inherit (pkgs) lib;
pkgs = import nixpkgs {
inherit system;
localSystem = { inherit system; };
overlays = [
(import rust-overlay)
(_final: prev: {