Working config for fw13 amd
This commit is contained in:
commit
b7147ec26e
49 changed files with 1812 additions and 0 deletions
6
system/hardware/bluetooth.nix
Normal file
6
system/hardware/bluetooth.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
hardware.bluetooth = {
|
||||
enable = true;
|
||||
};
|
||||
environment.systemPackages = [pkgs.bluetui];
|
||||
}
|
||||
16
system/hardware/commonGraphics.nix
Normal file
16
system/hardware/commonGraphics.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{pkgs, ...}: {
|
||||
hardware.graphics = {
|
||||
enable = true;
|
||||
enable32Bit = true;
|
||||
|
||||
extraPackages = with pkgs; [
|
||||
libva
|
||||
vaapiVdpau
|
||||
libvdpau-va-gl
|
||||
];
|
||||
extraPackages32 = with pkgs.pkgsi686Linux; [
|
||||
vaapiVdpau
|
||||
libvdpau-va-gl
|
||||
];
|
||||
};
|
||||
}
|
||||
9
system/hardware/default.nix
Normal file
9
system/hardware/default.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
|
||||
imports = [
|
||||
./bluetooth.nix
|
||||
./commonGraphics.nix
|
||||
./fwupd.nix
|
||||
];
|
||||
}
|
||||
3
system/hardware/fwupd.nix
Normal file
3
system/hardware/fwupd.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
services.fwupd.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue