summaryrefslogtreecommitdiffstats
path: root/nixos/modules
diff options
context:
space:
mode:
authorMichele Guerini Rocco <rnhmjoj@users.noreply.github.com>2020-02-14 10:50:47 +0100
committerGitHub <noreply@github.com>2020-02-14 10:50:47 +0100
commit3d3392a492fe3bba2debe35ed53c7534d555d940 (patch)
tree44cc6bf26417c12e3fd2954c6f9b8763f57dd199 /nixos/modules
parent30bc29280a07b595d26cb78e264c5a1fbd8355f0 (diff)
parent0f8d1ac47d9e64d4536c13fb9940d44a89fdb2ec (diff)
Merge pull request #80090 from crabtw/master
nixos/pppd: fix build error
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/networking/pppd.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/networking/pppd.nix b/nixos/modules/services/networking/pppd.nix
index b31bfa642358..c1cbdb461765 100644
--- a/nixos/modules/services/networking/pppd.nix
+++ b/nixos/modules/services/networking/pppd.nix
@@ -130,7 +130,7 @@ in
systemdConfigs = listToAttrs (map mkSystemd enabledConfigs);
in mkIf cfg.enable {
- environment.etc = mkMerge etcFiles;
- systemd.services = mkMerge systemdConfigs;
+ environment.etc = etcFiles;
+ systemd.services = systemdConfigs;
};
}