diff --git a/hosts/pinwheel/configuration.nix b/hosts/pinwheel/configuration.nix index 396f8a8..d09582e 100644 --- a/hosts/pinwheel/configuration.nix +++ b/hosts/pinwheel/configuration.nix @@ -23,6 +23,7 @@ ./modules/swaylock ./modules/dunst ./modules/bemenu + ./modules/fzf ./modules/syncthing ./modules/firefox ./modules/mullvad diff --git a/hosts/pinwheel/modules/fzf/default.nix b/hosts/pinwheel/modules/fzf/default.nix new file mode 100644 index 0000000..e28f6cb --- /dev/null +++ b/hosts/pinwheel/modules/fzf/default.nix @@ -0,0 +1,10 @@ +{ pkgs, ... }: +{ + home-manager.users.alex = { + programs.fzf = { + enable = true; + + enableZshIntegration = true; + }; + }; +}