dotfiles/pkgs/home-daemon/shell.nix

9 lines
122 B
Nix

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