sgx-nixos: add podman

Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
This commit is contained in:
Harald Hoyer 2024-03-21 16:52:35 +01:00
parent f8ebc5d553
commit bfeb26c5e0

View file

@ -15,6 +15,7 @@ with lib.metacfg;
nix-ld.enable = true;
nix.enable = true;
aesmd_dcap.enable = true;
podman.enable = true;
user.extraGroups = [ "docker" "sgx" ];
};
@ -31,7 +32,10 @@ with lib.metacfg;
}
'';
virtualisation.docker.enable = true;
virtualisation = {
docker.enable = true;
podman.dockerCompat = false;
};
system.autoUpgrade = {
enable = true;