From a500171fd804809262553fc9d637b394439090a7 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Sun, 5 Apr 2020 15:29:59 +0100 Subject: [PATCH] Remove unnecessary rec { .. } In Nix, rec mean "recursive" and for attribute sets, this allows attributes to refer to other attributes in the same attribute set. This is useful, but I'm not using it here, so I'm removing it. --- configs/.config/nixpkgs/home.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/.config/nixpkgs/home.nix b/configs/.config/nixpkgs/home.nix index 9c7d44165..a2f008987 100644 --- a/configs/.config/nixpkgs/home.nix +++ b/configs/.config/nixpkgs/home.nix @@ -122,7 +122,7 @@ in { }; }; - programs.fzf = rec { + programs.fzf = { enable = true; defaultCommand = "fd --hidden --follow --exclude '.git'"; fileWidgetCommand = defaultCommand;