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 = [ sucrose.modules = [
( (
{pkgs, ...}: { {pkgs, config, ...}: {
environment.systemPackages = [pkgs.podman-compose]; environment.systemPackages = [pkgs.podman-compose];
virtualisation = { virtualisation = {
containers.enable = true; containers.enable = true;
podman = { podman = {
enable = true; enable = true;
dockerCompat = false; 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"; oci-containers.backend = "podman";
}; };