Add org-caldav

This commit is contained in:
Alexander Bantyev 2021-02-08 23:29:43 +03:00
parent 2034615561
commit 468d3a1f04
Signed by: balsoft
GPG Key ID: E081FF12ADCB4AD5
3 changed files with 16 additions and 2 deletions

View File

@ -2,8 +2,8 @@
imports = with inputs.self.nixosModules; [ imports = with inputs.self.nixosModules; [
./hardware-configuration.nix ./hardware-configuration.nix
inputs.self.nixosProfiles.base inputs.self.nixosProfiles.base
gitea # gitea
jitsi # jitsi
mailserver mailserver
matrix-synapse matrix-synapse
minidlna minidlna

View File

@ -1,4 +1,9 @@
{ pkgs, config, lib, ... }: { { pkgs, config, lib, ... }: {
# secrets-envsubst.emacs = {
# owner = "balsoft:users";
# directory = "emacs";
# };
home-manager.users.balsoft = { home-manager.users.balsoft = {
programs.emacs = { programs.emacs = {
enable = true; enable = true;
@ -50,6 +55,7 @@
edit-indirect edit-indirect
idris-mode idris-mode
lsp-mode lsp-mode
org-caldav
]; ];
}; };

View File

@ -229,4 +229,12 @@ If point was already at that position, move point to beginning of line."
:server-id 'nix)) :server-id 'nix))
) )
(use-package org-caldav
:config
(setq org-caldav-url "https://nextcloud.balsoft.ru/remote.php/dav/calendars/balsoft")
(setq org-caldav-calendar-id "work")
(setq org-caldav-inbox "/home/balsoft/Documents/Work/calendar.org")
(setq org-icalendar-timezone "Europe/Moscow")
)
;;; init.el ends here ;;; init.el ends here