adyya-flake/cluster/virtualisation.mod.nix
Ittihadyya 86fd04307a
Some checks failed
/ Check formatting (push) Failing after 1s
this apparently made pihole cry and fail to start
2024-12-20 12:39:32 +02:00

25 lines
506 B
Nix

{
cluster.modules = [
{
users.users.emv.extraGroups = [
"podman"
];
}
];
sucrose.modules = [
(
{pkgs, ...}: {
environment.systemPackages = [pkgs.podman-compose];
virtualisation = {
containers.enable = true;
podman = {
enable = true;
dockerCompat = false;
defaultNetwork.settings.dns_enabled = false;
};
oci-containers.backend = "podman";
};
}
)
];
}