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>
14 lines
245 B
Nix
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;
|
|
};
|
|
};
|
|
}
|