bugfix
This commit is contained in:
parent
fd3237464e
commit
8d5180b11c
@ -145,7 +145,7 @@ in {
|
||||
virtualisation = {
|
||||
containers.enable = true;
|
||||
oci-containers.backend = "podman";
|
||||
podman = lib.mkIf enableContainers {
|
||||
podman = lib.mkIf (enableContainers || config.my.enableContainers) {
|
||||
enable = true;
|
||||
dockerCompat = 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;
|
||||
defaults.email = config.my.email;
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user