feat: added readme and documentation

This commit is contained in:
pyrite 2025-08-07 16:28:00 +02:00
parent daeff053f4
commit 893d620c95
Signed by: pyrite
GPG key ID: 7F1BA9170CD35D15
8 changed files with 179 additions and 26 deletions

View file

@ -18,12 +18,14 @@
system:
let
pkgs = import nixpkgs { inherit system; };
toolchain = fenix.packages.${system}.stable.toolchain;
# toolchain = fenix.packages.${system}.stable.toolchain;
nightlyToolchain = fenix.packages.${system}.latest.toolchain;
in
{
devShells.default = pkgs.mkShell {
packages = [
toolchain
# toolchain
nightlyToolchain
];
};
}