nixos/podman: remove unused mkMerge

This commit is contained in:
Sandro Jäckel 2023-01-25 13:21:36 +01:00 committed by zowoq
parent 6948768c4a
commit 7a7ff877b7

View File

@ -147,7 +147,7 @@ in
};
config = lib.mkIf cfg.enable (lib.mkMerge [
config = lib.mkIf cfg.enable
{
environment.systemPackages = [ cfg.package ]
++ lib.optional cfg.dockerCompat dockerCompat;
@ -241,6 +241,5 @@ in
'';
}
];
}
]);
};
}