mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 11:02:19 +00:00
10 lines
319 B
Nix
10 lines
319 B
Nix
{config, ...}: let
|
|
theme = import ../lib/theme.nix {inherit config;};
|
|
in {
|
|
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";
|
|
}
|