Compare commits

..

No commits in common. "806a34cf0ed9d383760ad9e667e75c7bbb602115" and "9200eedb045af6913511551b080d6e21353d833d" have entirely different histories.

View file

@ -8,14 +8,14 @@
];
sucrose.modules = [
(
{pkgs, config, ...}: {
{pkgs, ...}: {
environment.systemPackages = [pkgs.podman-compose];
virtualisation = {
containers.enable = true;
podman = {
enable = true;
dockerCompat = false;
defaultNetwork.settings.dns_enabled = (config.networking.hostName == "glucose"); # TODO: fix this stupid shit ssometime -e
defaultNetwork.settings.dns_enabled = true;
};
oci-containers.backend = "podman";
};