diff options
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/laptop.nix | 10 | ||||
-rw-r--r-- | profiles/workshop.nix | 3 |
2 files changed, 12 insertions, 1 deletions
diff --git a/profiles/laptop.nix b/profiles/laptop.nix index 39c875c..3e25609 100644 --- a/profiles/laptop.nix +++ b/profiles/laptop.nix @@ -8,6 +8,7 @@ ../lib/emacs.nix ../lib/ssh.nix ../lib/packages.nix + ../lib/email.nix ]; home = { @@ -114,4 +115,13 @@ ]; }; }; + + services.muchsync = { + remotes = { + server = { + frequency = "*:/10"; + remote.host = "dev.simatime.com"; + }; + }; + }; } diff --git a/profiles/workshop.nix b/profiles/workshop.nix index 311aeab..9f92ea1 100644 --- a/profiles/workshop.nix +++ b/profiles/workshop.nix @@ -7,6 +7,7 @@ ../lib/ssh.nix ../lib/packages.nix ../lib/emacs.nix + ../lib/email.nix ]; home = { @@ -51,5 +52,5 @@ ''; }; - + services.mbsync.enable = true; } |