Merge pull request #191902 from ck3d/fix-machinectl-system

nixos/test: fix system for container in systemd-machinectl
This commit is contained in:
Christian Kögler 2022-10-01 10:00:04 +02:00 committed by GitHub
commit 95ca550fa3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
import ./make-test-python.nix (
import ./make-test-python.nix ({ pkgs, ... }:
let
container = {
@ -18,6 +18,7 @@ import ./make-test-python.nix (
};
containerSystem = (import ../lib/eval-config.nix {
inherit (pkgs) system;
modules = [ container ];
}).config.system.build.toplevel;