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

@ -0,0 +1,15 @@
{
flake.modules.homeManager.base =
{ config, ... }:
{
programs.tmux-sessionizer.searchPaths =
let
inherit (config.xdg) userDirs;
in
[
"${userDirs.extraConfig.XDG_REPOS_DIR}:2"
"${userDirs.documents}:1"
"${config.home.homeDirectory}/tmp"
];
};
}

View file

@ -0,0 +1,26 @@
{ lib, ... }:
{
flake.modules.homeManager.base =
{ config, ... }:
{
options.programs.tmux-sessionizer = {
searchPaths = lib.mkOption {
default = [ config.home.homeDirectory ];
type = lib.types.listOf lib.types.str;
description = "List of search paths for tmux-sessionizer to use.";
};
# TODO: add TS_EXTRA_SEARCH_PATHS.
# TODO: add TS_MAX_DEPTH.
# TODO: add TS_SESSION_COMMANDS once I figure out what they're for.
};
config = {
xdg.configFile."tmux-sessionizer/tmux-sessionizer.conf".text = ''
TS_SEARCH_PATHS=(${builtins.concatStringsSep " " config.programs.tmux-sessionizer.searchPaths})
TS_SESSION_COMMANDS=(nvim .)
'';
};
};
}

View file

@ -0,0 +1,30 @@
{
flake.modules.homeManager.base =
{ config, pkgs, ... }:
{
home.file.".tmux-sessionizer".source = "${
pkgs.writeShellApplication {
name = ".tmux-sessionizer";
runtimeInputs = with pkgs; [
tmux
];
text = ''
set +o errexit
set +o nounset
if [[ "$PWD" == "${config.xdg.userDirs.extraConfig.XDG_REPOS_DIR}/os" || "$PWD" == "${config.xdg.userDirs.extraConfig.XDG_REPOS_DIR}/personal" || "$PWD" == "${config.xdg.userDirs.extraConfig.XDG_REPOS_DIR}/work" ]]; then
clear
return
fi
tmux new-window -d -n scratch
nvim .
clear
'';
}
}/bin/.tmux-sessionizer";
};
}

View file

@ -0,0 +1,7 @@
{
flake.modules.homeManager.base =
{ pkgs, ... }:
{
home.packages = with pkgs; [ tmux-sessionizer ];
};
}