mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 03:04:03 -06:00
21 lines
309 B
Nix
21 lines
309 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
# Rust
|
|
cargo
|
|
rustc
|
|
|
|
# System
|
|
pkg-config
|
|
util-linux
|
|
];
|
|
|
|
#inputsFrom = with pkgs; [ bat ];
|
|
|
|
RUST_BACKTRACE = 1;
|
|
|
|
shellHook = ''
|
|
echo "Ready to make some Rust!"
|
|
'';
|
|
}
|