Compare commits

..

2 commits

Author SHA1 Message Date
806a34cf0e forgot to add config
Some checks failed
/ Check formatting (push) Failing after 1m51s
2024-12-20 21:11:15 +02:00
e9f8ac29aa add some stupid logic because the pihole is throwing a tantrum over its port being taken (bc it's the dns port, ugh) 2024-12-20 21:10:56 +02:00

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 = true;
defaultNetwork.settings.dns_enabled = (config.networking.hostName == "glucose"); # TODO: fix this stupid shit ssometime -e
};
oci-containers.backend = "podman";
};