bugfix
This commit is contained in:
@@ -145,7 +145,7 @@ in {
|
|||||||
virtualisation = {
|
virtualisation = {
|
||||||
containers.enable = true;
|
containers.enable = true;
|
||||||
oci-containers.backend = "podman";
|
oci-containers.backend = "podman";
|
||||||
podman = lib.mkIf enableContainers {
|
podman = lib.mkIf (enableContainers || config.my.enableContainers) {
|
||||||
enable = true;
|
enable = true;
|
||||||
dockerCompat = true;
|
dockerCompat = true;
|
||||||
dockerSocket.enable = true;
|
dockerSocket.enable = true;
|
||||||
@@ -157,7 +157,7 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
security.acme = lib.mkIf (config.services.nginx.enable || config.my.enableContainers) {
|
security.acme = lib.mkIf config.services.nginx.enable {
|
||||||
acceptTerms = true;
|
acceptTerms = true;
|
||||||
defaults.email = config.my.email;
|
defaults.email = config.my.email;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user