Fix db pointer

This commit is contained in:
soraefir
2026-05-06 01:21:01 +02:00
parent a44dc8108d
commit a8c8740b14
2 changed files with 11 additions and 23 deletions

View File

@@ -11,20 +11,17 @@ let
in
{
config = lib.mkIf ( enabledConfigs != {} ) {
virtualisation.containers.containersConf.settings = {
containers = {
host_containers_internal = true;
additional_hosts = [ "host.internal:host-gateway" ];
};
};
virtualisation.oci-containers = {
backend = "podman";
containers = mergedContainers;
};
# systemd.services.init-podman-network = {
# description = "Create Podman network with subnet";
# after = [ "network.target" ];
# wantedBy = [ "multi-user.target" ];
# serviceConfig.Type = "oneshot";
# script = ''
# ${pkgs.podman}/bin/podman network inspect podnet || \
# ${pkgs.podman}/bin/podman network create --subnet=10.88.0.0/16 podnet
# '';
# };
};
}