This commit is contained in:
sinavir 2024-10-10 01:38:42 +02:00
parent 331971da81
commit 3d1673d3f5
46 changed files with 5395 additions and 0 deletions

11
provisioning/shell.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs ? import (import ../npins).nixpkgs { } }:
pkgs.mkShell {
buildInputs = [
(pkgs.callPackage ./python.nix { debug = true; })
pkgs.cargo
pkgs.cargo-edit
pkgs.rustc
pkgs.rust-analyzer
pkgs.rustfmt
];
}