Files
crun/nix/default.nix
Sascha Grunert 64105d96f7 Use overlay and single nix derivation
Deduplicate code and cleanup the nix derivation based on the input.

Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
2023-09-29 12:32:16 +02:00

9 lines
181 B
Nix

{ enableSystemd ? true }:
(import ./nixpkgs.nix {
overlays = [ (import ./overlay.nix) ];
}).callPackage ./derivation.nix
{
enableCriu = true;
enableSystemd = enableSystemd;
}