diff options
author | William Carroll <wpcarro@gmail.com> | 2020-04-05T14·29+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-04-05T14·29+0100 |
commit | a500171fd804809262553fc9d637b394439090a7 (patch) | |
tree | be8bfbf935fa972d481732b2a9cd33a03916659f /configs/.config | |
parent | 3f5cea53b0fe7aab780f70e858b2d29c08aa0a25 (diff) |
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.
Diffstat (limited to 'configs/.config')
-rw-r--r-- | configs/.config/nixpkgs/home.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/.config/nixpkgs/home.nix b/configs/.config/nixpkgs/home.nix index 9c7d441658e0..a2f00898794d 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; |