1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 01:48:31 +02:00

mbsync: put extra config at the beginning

If it is at the end it will just end up applying to the last defined
section.

Fixes #748
This commit is contained in:
Robert Helgesson 2019-07-05 22:16:15 +02:00
parent 2029e104d4
commit c3520bfa52
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -173,9 +173,9 @@ in
in in
concatStringsSep "\n" ( concatStringsSep "\n" (
[ "# Generated by Home Manager.\n" ] [ "# Generated by Home Manager.\n" ]
++ optional (cfg.extraConfig != "") cfg.extraConfig
++ accountsConfig ++ accountsConfig
++ groupsConfig ++ groupsConfig
++ optional (cfg.extraConfig != "") cfg.extraConfig
) + "\n"; ) + "\n";
home.activation.createMaildir = home.activation.createMaildir =