summaryrefslogtreecommitdiffstats
path: root/nixos/modules
diff options
context:
space:
mode:
authorJyun-Yan You <jyyou.tw@gmail.com>2020-02-14 10:42:49 +0800
committerJyun-Yan You <jyyou.tw@gmail.com>2020-02-14 12:51:50 +0800
commit0f8d1ac47d9e64d4536c13fb9940d44a89fdb2ec (patch)
tree98af242690634cd93927d60aaafe2825c257ec63 /nixos/modules
parentc1741fc12a3329cf4c4509f22c60dfd4d54a192f (diff)
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;
};
}