Apply nixfmt on many files

This commit is contained in:
Robert Helgesson
2020-02-02 00:39:17 +01:00
parent 9799d3de2d
commit 45abf3d38a
177 changed files with 2850 additions and 3565 deletions

View File

@@ -17,7 +17,7 @@ with lib;
extraConfig = mkOption {
type = types.attrs;
default = {};
default = { };
example = { select_query = ""; };
description = ''
Extra settings to add to this astroid account configuration.
@@ -26,8 +26,7 @@ with lib;
};
config = mkIf config.notmuch.enable {
astroid.sendMailCommand = mkIf config.msmtp.enable (
mkOptionDefault "msmtpq --read-envelope-from --read-recipients"
);
astroid.sendMailCommand = mkIf config.msmtp.enable
(mkOptionDefault "msmtpq --read-envelope-from --read-recipients");
};
}