blob: f78ca1d2852e7513dd3cebe1f71acff18cede61b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{pkgs, ...}: {
virtualisation = {
podman = {
enable = true;
enableNvidia = true;
extraPackages = with pkgs; [podman-compose];
autoPrune.enable = true;
};
oci-containers.backend = "podman";
};
}
|