From 6da2a74f2eb4d7bad9cc8c70d5d577dd926cddd9 Mon Sep 17 00:00:00 2001 From: Uttarayan Date: Wed, 14 Feb 2024 20:09:12 +0530 Subject: [PATCH] [fix] Remove fzf.nix and embed it into home.nix --- config/nix/fzf.nix | 8 -------- config/nix/home.nix | 7 ++++++- 2 files changed, 6 insertions(+), 9 deletions(-) delete mode 100644 config/nix/fzf.nix diff --git a/config/nix/fzf.nix b/config/nix/fzf.nix deleted file mode 100644 index dafc14d6..00000000 --- a/config/nix/fzf.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ pkgs, ... }: { - programs.fzf = { - enable = true; - package = pkgs.fzf; - enableFishIntegration = true; - enableShellIntegration = true; - }; -} diff --git a/config/nix/home.nix b/config/nix/home.nix index 931be0fe..5cddc25a 100644 --- a/config/nix/home.nix +++ b/config/nix/home.nix @@ -61,7 +61,12 @@ "cd" = "z"; }; }; - + fzf = { + enable = true; + package = pkgs.fzf; + enableFishIntegration = true; + enableShellIntegration = true; + }; keychain = { enable = true; keys = ["id_ed25519" "hetzner_rsa"];