feat: use rust-overlay to get the rust binaries
This should ensure I use my own rust version instead of the one in nixpkgs.
This commit is contained in:
parent
3b72936a49
commit
95cfb31b9a
3 changed files with 48 additions and 8 deletions
11
flake.nix
11
flake.nix
|
@ -1,17 +1,22 @@
|
|||
{
|
||||
description = "An http server that calls nsupdate internally";
|
||||
inputs = {
|
||||
crane.url = "github:ipetkov/crane";
|
||||
nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz";
|
||||
flake-parts = {
|
||||
url = "github:hercules-ci/flake-parts";
|
||||
inputs.nixpkgs-lib.follows = "nixpkgs";
|
||||
};
|
||||
nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz";
|
||||
systems.url = "github:nix-systems/default";
|
||||
treefmt-nix = {
|
||||
url = "github:numtide/treefmt-nix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
crane.url = "github:ipetkov/crane";
|
||||
rust-overlay = {
|
||||
url = "github:oxalica/rust-overlay";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
systems.url = "github:nix-systems/default";
|
||||
};
|
||||
|
||||
outputs =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue