11.stylix/modules/fzf/testbeds/fzf.nix
NAHO 3b6731f6f0
stylix/testbed/modules/common: globally enable Bash (#1803)
Globally enable Bash to ensure environment variables are set, avoiding
individual testbeds to consider environment variable implementation
details.

Link: https://github.com/nix-community/stylix/pull/1803

Reviewed-by: awwpotato <awwpotato@voidq.com>
2025-07-30 10:23:34 -07:00

11 lines
202 B
Nix

{ lib, pkgs, ... }:
{
stylix.testbed.ui.command = {
text = lib.getExe pkgs.fzf;
useTerminal = true;
};
home-manager.sharedModules = lib.singleton {
programs.fzf.enable = true;
};
}