mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 08:03:44 +00:00
9 lines
260 B
Nix
9 lines
260 B
Nix
{ theme, ... }:
|
|
{
|
|
home.sessionVariables = {
|
|
FZF_DEFAULT_OPTS_FILE = theme.paths.fzfCurrentFile;
|
|
};
|
|
|
|
xdg.configFile."fzf/themes/cozybox-dark".text = theme.renderFzf "dark";
|
|
xdg.configFile."fzf/themes/cozybox-light".text = theme.renderFzf "light";
|
|
}
|