summaryrefslogtreecommitdiff
path: root/modules/pc
diff options
context:
space:
mode:
Diffstat (limited to 'modules/pc')
-rw-r--r--modules/pc/hardware/default.nix1
-rw-r--r--modules/pc/hardware/tpm.nix18
2 files changed, 0 insertions, 19 deletions
diff --git a/modules/pc/hardware/default.nix b/modules/pc/hardware/default.nix
index cc2915e..7531556 100644
--- a/modules/pc/hardware/default.nix
+++ b/modules/pc/hardware/default.nix
@@ -3,7 +3,6 @@
./bluetooth.nix
./cpu.nix
./usb.nix
- ./tpm.nix
./yubikey.nix
];
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" ];
-}