mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 20:03:10 +00:00
12 lines
323 B
Nix
12 lines
323 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";
|
|
}
|