This repository has been archived by the owner on Oct 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nix/nixpkgs.nix: default
enableMozillaOverlay
to false
.
We only need to enable the Overlay for rust nightly, which we only use in our dev-shell for lorri. In all other places we don’t need it. Having no default value also broke the tutorial (direnv setup), because `nix-env -f ./nix/nixpkgs.nix` would not work anymore.
- Loading branch information
1 parent
703c71b
commit a6a9ded
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ enableMozillaOverlay }: | ||
{ enableMozillaOverlay ? false }: | ||
let | ||
hostpkgs = import <nixpkgs> {}; | ||
|
||
|