ethminer fiddelings
This commit is contained in:
parent
8b40f21482
commit
e7dc29ced5
3 changed files with 5 additions and 15 deletions
|
@ -71,9 +71,7 @@
|
|||
# for congress and streaming
|
||||
hardware.opengl = {
|
||||
enable = true;
|
||||
extraPackages = [
|
||||
pkgs.vaapiIntel
|
||||
];
|
||||
extraPackages = [ pkgs.vaapiIntel ];
|
||||
driSupport = true;
|
||||
driSupport32Bit = true;
|
||||
};
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
|
@ -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: {
|
||||
|
|
Loading…
Reference in a new issue