summaryrefslogtreecommitdiff
path: root/modules/pc/hardware/tpm.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/pc/hardware/tpm.nix')
-rw-r--r--modules/pc/hardware/tpm.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/modules/pc/hardware/tpm.nix b/modules/pc/hardware/tpm.nix
deleted file mode 100644
index b84551e..0000000
--- a/modules/pc/hardware/tpm.nix
+++ /dev/null
@@ -1,18 +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
- ];
-
- boot.kernelModules = [ "uhid" ];
-}