11.stylix/modules/fzf/testbeds/default.nix
Flameopathic 45aa0e8492
fzf: add testbed (#1201)
Link: https://github.com/danth/stylix/pull/1201

Co-authored-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-05-05 20:25:24 +02:00

14 lines
245 B
Nix

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