dotfiles/.config/nixshell/xmrig.nix
2023-05-07 15:58:57 +02:00

18 lines
279 B
Nix

{ pkgs ? import <nixpkgs> {config.allowUnfree=true;} }:
pkgs.mkShell {
name = "xmrig-nvidia-env";
buildInputs = with pkgs; [
cmake
libuv
openssl
pkgconfig
haskellPackages.cuda
cudaPackages.cudatoolkit
libmicrohttpd
];
shellHook = ''
'';
}