summaryrefslogtreecommitdiff
path: root/modules/security/tpm.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/security/tpm.nix')
-rw-r--r--modules/security/tpm.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/modules/security/tpm.nix b/modules/security/tpm.nix
deleted file mode 100644
index 3277d9f..0000000
--- a/modules/security/tpm.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ 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
- ];
-}