Extract a fzf mixin

This commit is contained in:
Oliver Davies 2025-04-05 09:00:00 +01:00
parent 3e0b574052
commit 49d46a30f9
5 changed files with 14 additions and 11 deletions

View file

@ -3,7 +3,6 @@
{
imports = [
./bin
./fzf.nix
./git.nix
./neovim
./newsboat

View file

@ -1,10 +0,0 @@
{
programs.fzf = {
enable = true;
enableZshIntegration = true;
};
home.sessionVariables = {
FZF_DEFAULT_OPTS = "--reverse";
};
}

12
modules/mixins/fzf.nix Normal file
View file

@ -0,0 +1,12 @@
{
home-manager.users.opdavies = {
programs.fzf = {
enable = true;
enableZshIntegration = true;
};
home.sessionVariables = {
FZF_DEFAULT_OPTS = "--reverse";
};
};
}