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:
parent
3f5cea53b0
commit
a500171fd8
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
programs.fzf = rec {
|
||||
programs.fzf = {
|
||||
enable = true;
|
||||
defaultCommand = "fd --hidden --follow --exclude '.git'";
|
||||
fileWidgetCommand = defaultCommand;
|
||||
|
|
Loading…
Reference in a new issue