mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-25 02:10:57 +01:00
Apply nixfmt on many files
This commit is contained in:
parent
9799d3de2d
commit
45abf3d38a
177 changed files with 2850 additions and 3565 deletions
|
|
@ -16,13 +16,16 @@ with lib;
|
|||
onNotifyPost = mkOption {
|
||||
type = with types; either str (attrsOf str);
|
||||
default = "";
|
||||
example = { mail = "\${pkgs.notmuch}/bin/notmuch new && \${pkgs.libnotify}/bin/notify-send 'New mail arrived'"; };
|
||||
example = {
|
||||
mail =
|
||||
"\${pkgs.notmuch}/bin/notmuch new && \${pkgs.libnotify}/bin/notify-send 'New mail arrived'";
|
||||
};
|
||||
description = "Shell commands to run after onNotify event.";
|
||||
};
|
||||
|
||||
boxes = mkOption {
|
||||
type = types.listOf types.str;
|
||||
default = [];
|
||||
default = [ ];
|
||||
example = [ "Inbox" "[Gmail]/MyLabel" ];
|
||||
description = "IMAP folders to watch.";
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue