summaryrefslogtreecommitdiff
path: root/modules/pc/hardware/tpm.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-03 00:20:27 -0700
committerFuwn <[email protected]>2024-10-03 00:20:27 -0700
commit94b1faacfb5b291d60bd6bbb1da2a1511d9817ff (patch)
treef67bde112c87e992e2506e7921a55265cbaec3b8 /modules/pc/hardware/tpm.nix
parentfastfetch: fix logo width (diff)
downloadnixos-config-94b1faacfb5b291d60bd6bbb1da2a1511d9817ff.tar.xz
nixos-config-94b1faacfb5b291d60bd6bbb1da2a1511d9817ff.zip
akashi: fix up
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" ];
-}