summary refs log tree commit diff
path: root/nixos/modules/services/networking/quicktun.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/networking/quicktun.nix')
-rw-r--r--nixos/modules/services/networking/quicktun.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/quicktun.nix b/nixos/modules/services/networking/quicktun.nix
index fb783c83646..438e67d5ebb 100644
--- a/nixos/modules/services/networking/quicktun.nix
+++ b/nixos/modules/services/networking/quicktun.nix
@@ -87,7 +87,7 @@ with lib;
   };
 
   config = mkIf (cfg != []) {
-    systemd.services = fold (a: b: a // b) {} (
+    systemd.services = foldr (a: b: a // b) {} (
       mapAttrsToList (name: qtcfg: {
         "quicktun-${name}" = {
           wantedBy = [ "multi-user.target" ];