dotfiles/home/home-daemon/shell.nix
2023-01-24 19:43:26 +07:00

9 lines
122 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "shell-rust";
buildInputs = [
pkgs.rustc pkgs.cargo
];
}