mirror of
https://github.com/nix-community/home-manager
synced 2024-11-26 21:19:45 +01: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:
parent
2029e104d4
commit
c3520bfa52
1 changed files with 1 additions and 1 deletions
|
@ -173,9 +173,9 @@ in
|
|||
in
|
||||
concatStringsSep "\n" (
|
||||
[ "# Generated by Home Manager.\n" ]
|
||||
++ optional (cfg.extraConfig != "") cfg.extraConfig
|
||||
++ accountsConfig
|
||||
++ groupsConfig
|
||||
++ optional (cfg.extraConfig != "") cfg.extraConfig
|
||||
) + "\n";
|
||||
|
||||
home.activation.createMaildir =
|
||||
|
|
Loading…
Reference in a new issue