fix: do not redefine pkgs and lim for levitated system
Some checks failed
Some checks failed
Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
This commit is contained in:
parent
1a607ef8ed
commit
c515e4354b
1 changed files with 2 additions and 1 deletions
|
@ -57,7 +57,6 @@ let
|
||||||
};
|
};
|
||||||
eval = lib.evalModules {
|
eval = lib.evalModules {
|
||||||
modules = [
|
modules = [
|
||||||
{ _module.args = { inherit pkgs; inherit (pkgs) lim; }; }
|
|
||||||
../../modules/base.nix
|
../../modules/base.nix
|
||||||
../../modules/users.nix
|
../../modules/users.nix
|
||||||
../../modules/busybox.nix
|
../../modules/busybox.nix
|
||||||
|
@ -68,6 +67,8 @@ let
|
||||||
{
|
{
|
||||||
# Inherit from that target system host platform.
|
# Inherit from that target system host platform.
|
||||||
nixpkgs.hostPlatform = stdenv.hostPlatform;
|
nixpkgs.hostPlatform = stdenv.hostPlatform;
|
||||||
|
# Force our own package set.
|
||||||
|
nixpkgs.pkgs = lib.mkForce pkgs;
|
||||||
}
|
}
|
||||||
({ ... } : paramConfig)
|
({ ... } : paramConfig)
|
||||||
../../modules/s6
|
../../modules/s6
|
||||||
|
|
Loading…
Reference in a new issue