power outage stash

This commit is contained in:
Qyriad 2026-03-22 17:15:04 +01:00
parent 2ecd987be6
commit a9b63f4d58
10 changed files with 332 additions and 62 deletions

View file

@ -16,7 +16,21 @@
fenixLib ? let
src = fetchTarball "https://github.com/nix-community/fenix/archive/main.tar.gz";
in import src { inherit pkgs; },
fenixToolchain ? fenixLib.latest.toolchain,
fenixBaseToolchain ? fenixLib.stable.withComponents [
"cargo"
"rustc"
"llvm-tools"
"rust-std"
"rust-docs"
"rust-src"
"rustc-dev"
"clippy"
],
fenixToolchain ? fenixLib.combine [
fenixBaseToolchain
# Rustfmt is very handy to have as nightly.
fenixLib.latest.rustfmt
],
}: let
inherit (pkgs) lib;