Compare commits
3 commits
bfa34dc989
...
389c2a8b4b
| Author | SHA1 | Date | |
|---|---|---|---|
| 389c2a8b4b | |||
| cef1ea5e09 | |||
| cf18f72ce4 |
5 changed files with 25 additions and 6 deletions
|
|
@ -13,6 +13,7 @@
|
|||
./services/screen-locker
|
||||
./services/blueman-applet
|
||||
./services/syncthing
|
||||
./services/git-sync
|
||||
];
|
||||
|
||||
home = {
|
||||
|
|
|
|||
|
|
@ -159,7 +159,7 @@
|
|||
:desc "Capture" "X" #'org-gtd-capture
|
||||
(:prefix ("d" . "org-gtd")
|
||||
:desc "Capture" "c" #'org-gtd-capture
|
||||
:desc "Engage" "e" #'org-gtd-engage-grouped-by-context
|
||||
:desc "Engage" "e" #'org-gtd-engage
|
||||
:desc "Process inbox" "p" #'org-gtd-process-inbox
|
||||
:desc "Show all next" "n" #'org-gtd-show-all-next
|
||||
(:prefix ("r" . "Review")
|
||||
|
|
@ -172,7 +172,7 @@
|
|||
:desc "Organize this item" "C-c C-c" #'org-gtd-organize)
|
||||
:bind
|
||||
(("C-c d c" . #'org-gtd-capture)
|
||||
("C-c d e" . #'org-gtd-engage-grouped-by-context)
|
||||
("C-c d e" . #'org-gtd-engage)
|
||||
("C-c d p" . #'org-gtd-process-inbox)
|
||||
("C-c d n" . #'org-gtd-show-all-next)
|
||||
("C-c d r p" . #'org-gtd-review-stuck-projects))
|
||||
|
|
|
|||
13
home/alex/services/git-sync/default.nix
Normal file
13
home/alex/services/git-sync/default.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
config.services.git-sync = {
|
||||
enable = true;
|
||||
repositories = {
|
||||
"org" = {
|
||||
path = "${config.home.homeDirectory}/org";
|
||||
uri = "git+ssh://gitea@git.failco.de:jakalx/org.git";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -100,9 +100,10 @@ in {
|
|||
|
||||
services.blueman.enable = true;
|
||||
|
||||
# Open ports in the firewall.
|
||||
networking.firewall.allowedTCPPorts = [ 5223 ];
|
||||
# networking.firewall.allowedUDPPorts = [ ... ];
|
||||
# Open ports in the firewall
|
||||
# 22000, 21027 syncthing discovery and connectivity
|
||||
networking.firewall.allowedTCPPorts = [ 22000 ];
|
||||
networking.firewall.allowedUDPPorts = [ 21027 22000 ];
|
||||
# Or disable the firewall altogether.
|
||||
# networking.firewall.enable = false;
|
||||
|
||||
|
|
|
|||
|
|
@ -331,7 +331,7 @@ in {
|
|||
folders = {
|
||||
"org" = {
|
||||
path = "/home/alex/org";
|
||||
devices = [ "redmi" ];
|
||||
devices = [ "redmi" "dregil" ];
|
||||
};
|
||||
"scan" = {
|
||||
path = "/home/alex/media/scan";
|
||||
|
|
@ -347,6 +347,10 @@ in {
|
|||
id =
|
||||
"C43WITF-2HS2UCD-X6QFM4H-SC7XQJ7-X5F73EB-7FZHMII-KQNSH5D-NMICIAW";
|
||||
};
|
||||
"dregil" = {
|
||||
id =
|
||||
"SMVQO7Q-EB2V7PC-B4LP5IN-SM2UUE4-FUI2RI4-LARFW3S-LXHPAT5-FLNY7QH";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue