ethminer fiddelings

This commit is contained in:
Ingolf Wagner 2021-05-15 11:27:34 +02:00
parent 8b40f21482
commit e7dc29ced5
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B
3 changed files with 5 additions and 15 deletions

View file

@ -71,9 +71,7 @@
# for congress and streaming
hardware.opengl = {
enable = true;
extraPackages = [
pkgs.vaapiIntel
];
extraPackages = [ pkgs.vaapiIntel ];
driSupport = true;
driSupport32Bit = true;
};

View file

@ -33,11 +33,7 @@ in {
# https://wiki.archlinux.org/title/GPGPU#Intel
hardware.opengl = {
enable = true;
extraPackages = with pkgs; [
intel-ocl
intel-compute-runtime
beignet
];
extraPackages = with pkgs; [ intel-ocl intel-compute-runtime beignet ];
driSupport = true;
driSupport32Bit = true;
};

View file

@ -1,13 +1,9 @@
# $ nixos-generator -f iso -c configuration.nix -o image.iso
{ pkgs, lib, ... }:
let
parameters = import ./parameters.nix;
in
{
let parameters = import ./parameters.nix;
in {
imports = [
./ethminer.nix
];
imports = [ ./ethminer.nix ];
nixpkgs.overlays = [
(self: super: {