From 4ef41f5d054e24e72c532fc72d190bbf13d79366 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 14 Oct 2025 07:58:39 +0100 Subject: [PATCH] Change `wiki` to `notes` Signed-off-by: Oliver Davies --- home-manager/opdavies/t480.nix | 2 +- modules/scripts/add-weight.nix | 2 +- modules/scripts/weight.nix | 2 +- modules/tmux/extra-config.nix | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/home-manager/opdavies/t480.nix b/home-manager/opdavies/t480.nix index b4826a3c..5cbc5b67 100644 --- a/home-manager/opdavies/t480.nix +++ b/home-manager/opdavies/t480.nix @@ -8,7 +8,7 @@ in { "wiki-push" = - "rsync -avzP ${documents}/wiki nixedo.oliverdavies.uk:${documents} --delete --delete-after"; + "rsync -avzP ${documents}/notes nixedo.oliverdavies.uk:${documents} --delete --delete-after"; }; }; diff --git a/modules/scripts/add-weight.nix b/modules/scripts/add-weight.nix index cb884e97..8bf9d5f6 100644 --- a/modules/scripts/add-weight.nix +++ b/modules/scripts/add-weight.nix @@ -17,7 +17,7 @@ in ]; text = '' - echo "$(today2),$1" >> "$XDG_DOCUMENTS_DIR/wiki/2-areas/health-fitness/weight.csv" + echo "$(today2),$1" >> "$XDG_DOCUMENTS_DIR/notes/2-areas/health-fitness/weight.csv" weight ''; diff --git a/modules/scripts/weight.nix b/modules/scripts/weight.nix index 4c63f47c..d2f58553 100644 --- a/modules/scripts/weight.nix +++ b/modules/scripts/weight.nix @@ -14,7 +14,7 @@ in coreutils ]; - text = ''tail "$XDG_DOCUMENTS_DIR/wiki/2-areas/health-fitness/weight.csv"''; + text = ''tail "$XDG_DOCUMENTS_DIR/notes/2-areas/health-fitness/weight.csv"''; }; }; diff --git a/modules/tmux/extra-config.nix b/modules/tmux/extra-config.nix index 78f0d208..a5daeaae 100644 --- a/modules/tmux/extra-config.nix +++ b/modules/tmux/extra-config.nix @@ -63,7 +63,7 @@ bind-key -r f run-shell "tmux new-window tmux-sessionizer" - bind-key -r D new-window -c "#{pane_current_path}" "[[ -e TODO.md ]] && nvim TODO.md || nvim ~/Documents/wiki/todo.txt" - bind-key -r W split-window -h -c ~/Documents/wiki "nvim '+Telescope find_files'" + bind-key -r D new-window -c "#{pane_current_path}" "[[ -e TODO.md ]] && nvim TODO.md || nvim ~/Documents/notes/todo.txt" + bind-key -r W split-window -h -c ~/Documents/notes "nvim '+Telescope find_files'" ''; }