From 315b321fe73c012355484744a8d5b4f2779dbe74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sun, 19 Jan 2025 15:14:29 +0100 Subject: [PATCH] Remove aliases --- flake.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index ad92e985..f32d5734 100644 --- a/flake.nix +++ b/flake.nix @@ -77,11 +77,11 @@ # deprecated: , config ? null , extraModules ? null - , system ? null # pkgs.system is used to detect user's arch + , system ? null # pkgs.stdenv.system is used to detect user's arch }: - if ! (builtins.elem pkgs.system [ "aarch64-linux" "x86_64-linux" ]) then + if ! (builtins.elem pkgs.stdenv.system [ "aarch64-linux" "x86_64-linux" ]) then throw - ("${pkgs.system} is not supported; aarch64-linux / x86_64-linux " + + ("${pkgs.stdenv.system} is not supported; aarch64-linux / x86_64-linux " + "are the only currently supported system types") else pkgs.lib.throwIf @@ -95,12 +95,12 @@ have been removed. Instead of 'extraModules' use the argument 'modules'. - The 'system' will be inferred by 'pkgs.system', + The 'system' will be inferred by 'pkgs.stdenv.system', so pass a 'pkgs = import nixpkgs { system = "aarch64-linux"; };' See the 22.11 release notes for more. '' (import ./modules { - targetSystem = pkgs.system; # system to cross-compile to + targetSystem = pkgs.stdenv.system; # system to cross-compile to inherit extraSpecialArgs home-manager-path pkgs; config.imports = modules; isFlake = true;