From 61b054463d41109384643ffa4acfb641ba25934a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?m=C3=BCde?= Date: Mon, 13 Apr 2026 10:21:13 +0200 Subject: [PATCH] fix system deprecated --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 4cb474f..04acd07 100644 --- a/flake.nix +++ b/flake.nix @@ -175,7 +175,8 @@ overlays = { unstable-packages = final: prev: { unstable = import nixpkgs-unstable { - inherit (prev) system config; + localSystem = prev.stdenv.hostPlatform; + inherit (prev) config; }; }; }; @@ -222,7 +223,7 @@ }; in nixpkgs.lib.nixosSystem { - inherit system specialArgs; + inherit specialArgs; modules = [ { imports = [ @@ -234,7 +235,6 @@ ]); nixpkgs = { - inherit system; hostPlatform = lib.mkDefault system; }; }