forgot to add config
Some checks failed
/ Check formatting (push) Failing after 1m51s

This commit is contained in:
Ittihadyya 2024-12-20 21:11:15 +02:00
parent e9f8ac29aa
commit 806a34cf0e

View file

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