diff options
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -28,6 +28,7 @@ let pkgs = import nixpkgs { inherit system; + overlays = [ fenix.overlays.default]; }; inherit (pkgs) lib; @@ -132,9 +133,14 @@ # Extra inputs can be added here nativeBuildInputs = with pkgs; [ - cargo - rustc - rust-analyzer + (pkgs.fenix.complete.withComponents [ + "cargo" + "clippy" + "rust-src" + "rustc" + "rustfmt" + ]) + rust-analyzer-nightly firefox geckodriver pkg-config |