mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
15 lines
276 B
Nix
15 lines
276 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../../common/cpu/amd
|
|
../../../common/gpu/nvidia
|
|
../../../common/pc/ssd
|
|
];
|
|
|
|
# TPM2 module
|
|
security.tpm2.enable = true;
|
|
|
|
# Device could have multiple architectures, but they all support open
|
|
hardware.nvidia.open = true;
|
|
}
|