Merge pull request #80090 from crabtw/master

nixos/pppd: fix build error
This commit is contained in:
Michele Guerini Rocco 2020-02-14 10:50:47 +01:00 committed by GitHub
commit 3d3392a492
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
};
}