Move tmux-sessionizer configuration
All checks were successful
/ check (push) Successful in 1m34s

This commit is contained in:
Oliver Davies 2025-07-24 23:16:16 +01:00
parent 64b158ed2a
commit eb516819fa
8 changed files with 79 additions and 89 deletions

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
{
imports = [ ../common ];
@ -13,17 +13,6 @@
notes.enable = true;
ranger.enable = true;
starship.enable = true;
tmux-sessionizer.enable = true;
tmux-sessionizer.searchPaths =
let
inherit (config.xdg) userDirs;
in
[
"${userDirs.extraConfig.XDG_REPOS_DIR}:2"
"${userDirs.documents}:1"
];
zsh.enable = true;
};

View file

@ -21,18 +21,6 @@
ranger.enable = true;
sxhkd.enable = true;
starship.enable = true;
tmux-sessionizer.enable = true;
tmux-sessionizer.searchPaths =
let
inherit (config.xdg) userDirs;
in
[
"${userDirs.extraConfig.XDG_REPOS_DIR}:2"
"${userDirs.documents}:1"
"${config.home.homeDirectory}/tmp"
];
zsh.enable = true;
};