nbsp 0.0.1

non-breaking space: a thoughtful community forum platform
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ pkgs, ... }:

let
  # Use Rustup to get our wanted Rust version from the toolchain file
  rustup-toolchain = pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
in
pkgs.mkShell rec {
  packages = with pkgs; [
    rustup-toolchain
    cargo-make
    release-plz
    gh
    hl-log-viewer
    podman
    commitlint
    mdbook
  ];
}