diff options
author | Ben Sima <ben@bsima.me> | 2021-01-16 09:17:54 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-01-16 09:17:54 -0500 |
commit | f6ecccfa1542076ac72507790a6dd9cd0c8a9bbf (patch) | |
tree | e79ab353b4b2027182bb2d2b33cd29243609751e /linux.nix | |
parent | 37be4f0fb76b75902745a4d7d7cd4ae29e0ea070 (diff) |
update email stuff
Diffstat (limited to 'linux.nix')
-rw-r--r-- | linux.nix | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -2,7 +2,7 @@ let homedir = builtins.getEnv "HOME"; - hostname = builtins.getEnv "HOSTNAME"; + hostname = lib.strings.removeSuffix "\n" (builtins.readFile /etc/hostname); gpgid = "D09299626FA78AF8"; cmdtree = pkgs.stdenv.mkDerivation { name = "cmdtree"; @@ -177,8 +177,8 @@ in keybase.enable = true; mbsync = { - enable = false; #if hostname == "lithium" then true else false; - frequency = "*:0/15"; + enable = if hostname == "lithium" then true else false; + frequency = "*:0/5"; postExec = "${pkgs.notmuch}/bin/notmuch new"; }; @@ -366,6 +366,7 @@ in enableSshSupport = false; enableExtraSocket = true; verbose = true; + pinentryFlavor = "curses"; extraConfig = '' allow-emacs-pinentry # StreamLocalBindUnlink yes |