This commit is contained in:
2025-09-01 22:25:49 +10:00
parent 1e3405d51d
commit 95eb87cc24
23 changed files with 2483 additions and 7 deletions

16
flake.nix Normal file
View File

@@ -0,0 +1,16 @@
{
description = "lead-rust";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = {
self,
nixpkgs,
}: {
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
packages.x86_64-linux.default = self.packages.x86_64-linux.hello;
};
}