dotfiles/home/home-daemon/shell.nix

9 lines
122 B
Nix
Raw Normal View History

2023-01-24 19:43:26 +07:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "shell-rust";
buildInputs = [
pkgs.rustc pkgs.cargo
];
}