11 lines
274 B
Nix
11 lines
274 B
Nix
|
{ lib, config, ... }: {
|
||
|
# integrate fzf into shell, >23.05 only
|
||
|
programs =
|
||
|
if (lib.toInt (lib.elemAt (lib.splitVersion config.system.nixos.release) 0) >= 23) then {
|
||
|
fzf = {
|
||
|
keybindings = true;
|
||
|
fuzzyCompletion = true;
|
||
|
};
|
||
|
} else { };
|
||
|
}
|