Compare commits

...

3 commits

5 changed files with 23 additions and 2 deletions

View file

@ -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.

Binary file not shown.

View file

@ -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

View file

@ -67,6 +67,9 @@
chc = "cherry-pick --continue";
cha = "cherry-pick --abort";
re = "restore";
res = "restore --staged";
lo = "log --pretty=oneline";
sma = "submodule add";