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
|
in
|
||||||
{
|
{
|
||||||
options.local.programs.share-files = {
|
options.local.programs.share-files = {
|
||||||
onionshare.enable = mkShareFileOpts "onionshare-gui";
|
onionshare = mkShareFileOpts "onionshare-gui";
|
||||||
croc.enable = mkShareFileOpts "croc";
|
croc = mkShareFileOpts "croc";
|
||||||
};
|
};
|
||||||
|
|
||||||
config.home.packages =
|
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, ... }:
|
{ config, pkgs, lib, inputs, globalData, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
imports = [./davmail.secret.nix];
|
||||||
|
|
||||||
nixpkgs.overlays = lib.mkAfter [
|
nixpkgs.overlays = lib.mkAfter [
|
||||||
inputs.nil.overlays.nil
|
inputs.nil.overlays.nil
|
||||||
inputs.wired.overlays.default
|
inputs.wired.overlays.default
|
||||||
|
@ -35,6 +37,22 @@
|
||||||
let lanMouseCfg = config.home-manager.users.jan.local.services.lan-mouse;
|
let lanMouseCfg = config.home-manager.users.jan.local.services.lan-mouse;
|
||||||
in lib.optional lanMouseCfg.enable lanMouseCfg.settings.port;
|
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 = {
|
home-manager.users.jan = {
|
||||||
imports = [
|
imports = [
|
||||||
./accounts.secret.nix
|
./accounts.secret.nix
|
||||||
|
|
|
@ -67,6 +67,9 @@
|
||||||
chc = "cherry-pick --continue";
|
chc = "cherry-pick --continue";
|
||||||
cha = "cherry-pick --abort";
|
cha = "cherry-pick --abort";
|
||||||
|
|
||||||
|
re = "restore";
|
||||||
|
res = "restore --staged";
|
||||||
|
|
||||||
lo = "log --pretty=oneline";
|
lo = "log --pretty=oneline";
|
||||||
|
|
||||||
sma = "submodule add";
|
sma = "submodule add";
|
||||||
|
|
Loading…
Reference in a new issue