Update search paths
All checks were successful
/ check (push) Successful in 1m41s

This commit is contained in:
Oliver Davies 2025-07-09 18:17:12 +01:00
parent 52821346ba
commit 4f4e959c07
2 changed files with 11 additions and 11 deletions

View file

@ -19,10 +19,14 @@
tmux.enable = true; tmux.enable = true;
tmux-sessionizer.enable = true; tmux-sessionizer.enable = true;
tmux-sessionizer.searchPaths = [ tmux-sessionizer.searchPaths =
"${config.xdg.userDirs.extraConfig.XDG_REPOS_DIR}:2" let
"${config.xdg.userDirs.documents}:1" inherit (config.xdg) userDirs;
]; in
[
"${userDirs.extraConfig.XDG_REPOS_DIR}:2"
"${userDirs.documents}:1"
];
todos.enable = true; todos.enable = true;
zsh.enable = true; zsh.enable = true;

View file

@ -27,17 +27,13 @@
tmux.enable = true; tmux.enable = true;
tmux-sessionizer.enable = true; tmux-sessionizer.enable = true;
tmux-sessionizer.searchPaths = tmux-sessionizer.searchPaths =
let let
inherit (config.xdg.userDirs) documents extraConfig; inherit (config.xdg) userDirs;
repos = extraConfig.XDG_REPOS_DIR;
in in
[ [
repos "${userDirs.extraConfig.XDG_REPOS_DIR}:2"
"${repos}/*" "${userDirs.documents}:1"
documents
]; ];
todos.enable = true; todos.enable = true;