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.
This commit is contained in:
William Carroll 2020-04-05 15:29:59 +01:00
parent 3f5cea53b0
commit a500171fd8

View file

@ -122,7 +122,7 @@ in {
};
};
programs.fzf = rec {
programs.fzf = {
enable = true;
defaultCommand = "fd --hidden --follow --exclude '.git'";
fileWidgetCommand = defaultCommand;