
new template dropped, especially useful for me since now I can just load up a TeX environment whenever I need to. also added some names to my devShells.
8 lines
156 B
Nix
8 lines
156 B
Nix
{ mkShell, rust-app, rust-bin }:
|
|
mkShell {
|
|
name = "Rust Rivers";
|
|
inputsFrom = [ rust-app ];
|
|
buildInputs = [
|
|
rust-bin.stable.latest.default
|
|
];
|
|
}
|