Evie Litherland-Smith
0682bb8cdb
Remove all home-manager config and related files Slight change of layout that makes more sense with new scope
20 lines
469 B
Nix
20 lines
469 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [./laptop.nix];
|
|
boot = {
|
|
extraModulePackages = with config.boot.kernelPackages; [v4l2loopback];
|
|
extraModprobeConfig = ''
|
|
options v4l2loopback devices=1 video_nr=1 card_label="OBS Cam" exclusive_caps=1
|
|
'';
|
|
};
|
|
hardware.opengl = {
|
|
driSupport = true;
|
|
driSupport32Bit = true;
|
|
extraPackages = with pkgs; [amdvlk rocmPackages.clr.icd];
|
|
extraPackages32 = [pkgs.driversi686Linux.amdvlk];
|
|
};
|
|
}
|