modules, ...: get rid of config.build.arch

This commit is contained in:
Alexander Sosedkin 2024-06-22 20:53:32 +02:00
parent 54a535b91b
commit 45fcd2da39
15 changed files with 67 additions and 54 deletions

View file

@ -1,6 +1,10 @@
# Copyright (c) 2019-2022, see AUTHORS. Licensed under MIT License, see LICENSE.
# Copyright (c) 2019-2024, see AUTHORS. Licensed under MIT License, see LICENSE.
{ pkgs, home-manager-path, isFlake }:
{ pkgs
, home-manager-path
, isFlake
, targetSystem # system to cross-compile to
}:
[
./build/activation.nix
@ -26,7 +30,7 @@
{
_file = ./module-list.nix;
_module.args = {
inherit home-manager-path isFlake;
inherit home-manager-path isFlake targetSystem;
pkgs = pkgs.lib.mkDefault pkgs;
};
}