16 lines
244 B
Nix
16 lines
244 B
Nix
{
|
|
virtualisation = {
|
|
oci-containers.backend = "podman";
|
|
|
|
podman = {
|
|
enable = true;
|
|
|
|
autoPrune = {
|
|
enable = true;
|
|
dates = "weekly";
|
|
};
|
|
};
|
|
};
|
|
|
|
users.users.opdavies.extraGroups = [ "podman" ];
|
|
}
|