chore: follow rolling NixOS and Home Manager inputs

This commit is contained in:
OpenAI Coding Assistant
2026-09-06 12:45:28 -05:00
parent 83c29a083b
commit 221e0b33cc
5 changed files with 20 additions and 19 deletions
+3 -3
View File
@@ -306,14 +306,14 @@ in
enableZshIntegration = true;
package = latest.fzf;
defaultCommand = "fd --type f --hidden --exclude .git";
fileWidgetCommand = "fd --type f --hidden --exclude .git";
changeDirWidgetCommand = "fd --type d --hidden --exclude .git";
fileWidget.command = "fd --type f --hidden --exclude .git";
changeDirWidget.command = "fd --type d --hidden --exclude .git";
defaultOptions = [
"--height=45%"
"--layout=reverse"
"--border=rounded"
];
fileWidgetOptions = [ "--preview 'bat --color=always --line-range=:200 -- {}'" ];
fileWidget.options = [ "--preview 'bat --color=always --line-range=:200 -- {}'" ];
colors = {
bg = c.background;
fg = c.text;