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>
11 lines
202 B
Nix
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;
|
|
};
|
|
}
|