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>
This commit is contained in:
Flameopathic 2025-05-05 14:25:24 -04:00 committed by GitHub
parent ce5fcf851d
commit 45aa0e8492
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,14 @@
{ 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;
};
};
}