mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-08 20:19:40 +01:00
13 lines
172 B
Nix
13 lines
172 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
../../../common/cpu/amd
|
||
|
../../../common/gpu/nvidia
|
||
|
../../../common/pc/ssd
|
||
|
];
|
||
|
|
||
|
# TPM2 module
|
||
|
security.tpm2.enable = true;
|
||
|
}
|