aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 4d2faae..7077d3b 100644
--- a/flake.nix
+++ b/flake.nix
@@ -18,11 +18,14 @@
inputs.nixpkgs.follows = "nixpkgs";
};
- # Rust toolchain (optional, for development)
+ # Rust toolchain
fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
+
+ # Rust build system for Nix
+ crane.url = "github:ipetkov/crane";
};
outputs = {
@@ -32,6 +35,7 @@
home-manager,
stylix,
fenix,
+ crane,
...
} @ inputs: let
system = "x86_64-linux";