Compare commits

..

No commits in common. "c9ab46696df05aa19d889f11ee422f0c992f110a" and "61f26315d5919176a223b7a2bd8317c646c055af" have entirely different histories.

2 changed files with 2 additions and 7 deletions

View File

@ -27,11 +27,6 @@
home-manager.users.${config.user} = {
programs.mbsync = { enable = true; };
services.mbsync = lib.mkIf pkgs.stdenv.isLinux {
enable = true;
frequency = "*:0/5";
postExec = "${pkgs.notmuch}/bin/notmuch new";
};
services.imapnotify.enable = pkgs.stdenv.isLinux && config.physical;
programs.notmuch.enable = true;
accounts.email = {

View File

@ -1,4 +1,4 @@
{ config, pkgs, lib, ... }: {
{ config, lib, ... }: {
home-manager.users.${config.user}.programs.starship = {
enable = true;
@ -21,7 +21,7 @@
};
cmd_duration = {
min_time = 5000;
show_notifications = if pkgs.stdenv.isLinux then false else true;
show_notifications = true;
min_time_to_notify = 30000;
format = "[$duration]($style) ";
};