Compare commits
No commits in common. "e3c1e4991d9bda2139a963b6893db99ee8035b47" and "c30db4076b7821f5b33c3bde0cc8da2fab5fe58e" have entirely different histories.
e3c1e4991d
...
c30db4076b
6 changed files with 5 additions and 32 deletions
|
|
@ -19,7 +19,6 @@ in
|
||||||
./programs/fzf
|
./programs/fzf
|
||||||
./programs/git
|
./programs/git
|
||||||
./programs/shell
|
./programs/shell
|
||||||
./programs/devenv.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./cli.nix
|
./cli.nix
|
||||||
|
./programs/devenv.nix
|
||||||
./programs/rofi
|
./programs/rofi
|
||||||
./programs/xmonad
|
./programs/xmonad
|
||||||
./programs/jitsi-meet
|
./programs/jitsi-meet
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
;; Place your private configuration here! Remember, you do not need to run 'doom
|
;; Place your private configuration here! Remember, you do not need to run 'doom
|
||||||
;; sync' after modifying this file!
|
;; sync' after modifying this file!
|
||||||
|
|
||||||
(setq ak/at-work? (getenv "I_AM_AT_WORK"))
|
(setq ak/at-work? (getenv "AK_AT_WORK"))
|
||||||
|
|
||||||
;; Some functionality uses this to identify you, e.g. GPG configuration, email
|
;; Some functionality uses this to identify you, e.g. GPG configuration, email
|
||||||
;; clients, file templates and snippets.
|
;; clients, file templates and snippets.
|
||||||
|
|
@ -112,31 +112,12 @@
|
||||||
org-todo-keywords '(
|
org-todo-keywords '(
|
||||||
(sequence "NEXT(n)" "TODO(t)" "WAIT(w@/!)" "|" "DONE(d!)" "CNCL(k@)")
|
(sequence "NEXT(n)" "TODO(t)" "WAIT(w@/!)" "|" "DONE(d!)" "CNCL(k@)")
|
||||||
(sequence "[ ](T)" "[-](S)" "[?](W)" "|" "[X](D)")
|
(sequence "[ ](T)" "[-](S)" "[?](W)" "|" "[X](D)")
|
||||||
)
|
))
|
||||||
org-tag-alist '(
|
|
||||||
;; Places
|
|
||||||
("@home" . ?h)
|
|
||||||
("@work" . ?w)
|
|
||||||
|
|
||||||
;; devices
|
|
||||||
("@phone" . ?p)
|
|
||||||
("@computer" . ?c)
|
|
||||||
|
|
||||||
;;
|
|
||||||
("@email" . ?e)
|
|
||||||
|
|
||||||
))
|
|
||||||
|
|
||||||
(use-package! org-ql)
|
(use-package! org-ql)
|
||||||
(use-package! org-modern)
|
|
||||||
(use-package! org-bookmark-heading)
|
(use-package! org-bookmark-heading)
|
||||||
|
|
||||||
(add-hook! 'org-mode-hook #'+org-init-keybinds-h))
|
(add-hook! 'org-mode-hook #'+org-init-keybinds-h))
|
||||||
|
|
||||||
(use-package! org-contacts
|
|
||||||
:after org
|
|
||||||
:custom (org-contacts-files '("~/org/contacts.org")))
|
|
||||||
|
|
||||||
(use-package! activities
|
(use-package! activities
|
||||||
:demand t
|
:demand t
|
||||||
:config
|
:config
|
||||||
|
|
@ -148,7 +129,6 @@
|
||||||
|
|
||||||
(activities-mode)
|
(activities-mode)
|
||||||
(activities-tabs-mode)
|
(activities-tabs-mode)
|
||||||
(setopt tab-bar-show 1)
|
|
||||||
(map!
|
(map!
|
||||||
(:prefix ("C-c a" . "Activities")
|
(:prefix ("C-c a" . "Activities")
|
||||||
:desc "Switch activity" "a" #'activities-switch
|
:desc "Switch activity" "a" #'activities-switch
|
||||||
|
|
|
||||||
|
|
@ -148,8 +148,8 @@
|
||||||
latex ; writing papers in Emacs has never been so fun
|
latex ; writing papers in Emacs has never been so fun
|
||||||
;;lean ; for folks with too much to prove
|
;;lean ; for folks with too much to prove
|
||||||
ledger ; be audit you can be
|
ledger ; be audit you can be
|
||||||
(lua +lsp +tree-sitter) ; one-based indices? one-based indices
|
lua ; one-based indices? one-based indices
|
||||||
(markdown +grip) ; writing docs for people to ignore
|
markdown ; writing docs for people to ignore
|
||||||
;;nim ; python + lisp at the speed of c
|
;;nim ; python + lisp at the speed of c
|
||||||
(nix +lsp +tree-sitter) ; I hereby declare "nix geht mehr!"
|
(nix +lsp +tree-sitter) ; I hereby declare "nix geht mehr!"
|
||||||
;;ocaml ; an objective camel
|
;;ocaml ; an objective camel
|
||||||
|
|
|
||||||
|
|
@ -53,9 +53,6 @@
|
||||||
;; :recipe (:host github :repo "username/repo"
|
;; :recipe (:host github :repo "username/repo"
|
||||||
;; :files ("some-file.el" "src/lisp/*.el")))
|
;; :files ("some-file.el" "src/lisp/*.el")))
|
||||||
|
|
||||||
(unpin! compat)
|
|
||||||
;(unpin! with-editor ghub)
|
|
||||||
|
|
||||||
(package! ormolu)
|
(package! ormolu)
|
||||||
(package! org-gtd
|
(package! org-gtd
|
||||||
:recipe (:host github :repo "Trevoke/org-gtd.el" :branch "master"))
|
:recipe (:host github :repo "Trevoke/org-gtd.el" :branch "master"))
|
||||||
|
|
@ -70,9 +67,7 @@
|
||||||
(package! org-present)
|
(package! org-present)
|
||||||
(package! denote)
|
(package! denote)
|
||||||
(package! org-super-agenda)
|
(package! org-super-agenda)
|
||||||
(package! org-modern)
|
|
||||||
(package! org-ql)
|
(package! org-ql)
|
||||||
(package! org-contacts)
|
|
||||||
(package! org-bookmark-heading)
|
(package! org-bookmark-heading)
|
||||||
(package! activities
|
(package! activities
|
||||||
:recipe (:host github :repo "alphapapa/activities.el" :branch "master"))
|
:recipe (:host github :repo "alphapapa/activities.el" :branch "master"))
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,6 @@ in
|
||||||
80
|
80
|
||||||
443
|
443
|
||||||
5000
|
5000
|
||||||
40005 # syncthing
|
|
||||||
];
|
];
|
||||||
allowedUDPPorts = [
|
allowedUDPPorts = [
|
||||||
53
|
53
|
||||||
|
|
@ -325,7 +324,6 @@ in
|
||||||
consumptionDirIsPublic = true;
|
consumptionDirIsPublic = true;
|
||||||
settings = {
|
settings = {
|
||||||
PAPERLESS_OCR_LANGUAGE = "deu+eng";
|
PAPERLESS_OCR_LANGUAGE = "deu+eng";
|
||||||
PAPERLESS_OCR_USER_ARGS = ''{"invalidate_digital_signatures": true}'';
|
|
||||||
PAPERLESS_URL = "https://docs.failco.de";
|
PAPERLESS_URL = "https://docs.failco.de";
|
||||||
PAPERLESS_CONSUMER_RECURSIVE = true;
|
PAPERLESS_CONSUMER_RECURSIVE = true;
|
||||||
PAPERLESS_CONSUMER_SUBDIRS_AS_TAGS = true;
|
PAPERLESS_CONSUMER_SUBDIRS_AS_TAGS = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue