diff options
Diffstat (limited to 'modules/security/tpm.nix')
| -rw-r--r-- | modules/security/tpm.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/security/tpm.nix b/modules/security/tpm.nix new file mode 100644 index 0000000..3277d9f --- /dev/null +++ b/modules/security/tpm.nix @@ -0,0 +1,16 @@ +{ pkgs, ... }: +{ + security.tpm2 = { + enable = true; + applyUdevRules = true; + abrmd.enable = true; + tctiEnvironment.enable = true; + pkcs11.enable = true; + }; + + environment.systemPackages = with pkgs; [ + tpm2-tools + tpm2-tss + tpm2-abrmd + ]; +} |