Compare commits
3 commits
0d18d774ff
...
37fe8423d0
Author | SHA1 | Date | |
---|---|---|---|
37fe8423d0 | |||
5109e1b495 | |||
b596259710 |
5 changed files with 23 additions and 2 deletions
|
@ -10,8 +10,8 @@ let
|
|||
in
|
||||
{
|
||||
options.local.programs.share-files = {
|
||||
onionshare.enable = mkShareFileOpts "onionshare-gui";
|
||||
croc.enable = mkShareFileOpts "croc";
|
||||
onionshare = mkShareFileOpts "onionshare-gui";
|
||||
croc = mkShareFileOpts "croc";
|
||||
};
|
||||
|
||||
config.home.packages =
|
||||
|
|
Binary file not shown.
BIN
users/jan/davmail.secret.nix
Normal file
BIN
users/jan/davmail.secret.nix
Normal file
Binary file not shown.
|
@ -1,6 +1,8 @@
|
|||
{ config, pkgs, lib, inputs, globalData, ... }:
|
||||
|
||||
{
|
||||
imports = [./davmail.secret.nix];
|
||||
|
||||
nixpkgs.overlays = lib.mkAfter [
|
||||
inputs.nil.overlays.nil
|
||||
inputs.wired.overlays.default
|
||||
|
@ -35,6 +37,22 @@
|
|||
let lanMouseCfg = config.home-manager.users.jan.local.services.lan-mouse;
|
||||
in lib.optional lanMouseCfg.enable lanMouseCfg.settings.port;
|
||||
|
||||
# Required to use MS Exchange in aerc
|
||||
services.davmail = {
|
||||
enable = true;
|
||||
url = "https://outlook.office365.com/EWS/Exchange.asmx";
|
||||
config.davmail = {
|
||||
allowRemote = false;
|
||||
ssl = {
|
||||
nosecurecaldav = false;
|
||||
nosecureimap = false;
|
||||
nosecureldap = false;
|
||||
nosecuresmtp = false;
|
||||
};
|
||||
mode = "O365Manual";
|
||||
};
|
||||
};
|
||||
|
||||
home-manager.users.jan = {
|
||||
imports = [
|
||||
./accounts.secret.nix
|
||||
|
|
|
@ -67,6 +67,9 @@
|
|||
chc = "cherry-pick --continue";
|
||||
cha = "cherry-pick --abort";
|
||||
|
||||
re = "restore";
|
||||
res = "restore --staged";
|
||||
|
||||
lo = "log --pretty=oneline";
|
||||
|
||||
sma = "submodule add";
|
||||
|
|
Loading…
Reference in a new issue