2.home-manager/tests/modules/programs/lazyworktree/settings.nix
Austin Horstman 6da59c400c tests/lazyworktree: updated settings example
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2026-02-28 20:01:47 -06:00

25 lines
635 B
Nix

{
programs.lazyworktree = {
enable = true;
settings = {
worktree_dir = "~/.local/share/worktrees";
sort_mode = "switched";
layout = "default";
auto_refresh = true;
ci_auto_refresh = false;
refresh_interval = 10;
disable_pr = false;
icon_set = "nerd-font-v3";
search_auto_select = false;
fuzzy_finder_input = false;
palette_mru = true;
palette_mru_limit = 5;
};
};
nmt.script = ''
assertFileExists home-files/.config/lazyworktree/config.yaml
assertFileContent home-files/.config/lazyworktree/config.yaml \
${./config.yaml}
'';
}