diff options
| author | Fuwn <[email protected]> | 2024-10-03 00:20:27 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-03 00:20:27 -0700 |
| commit | 94b1faacfb5b291d60bd6bbb1da2a1511d9817ff (patch) | |
| tree | f67bde112c87e992e2506e7921a55265cbaec3b8 /modules/pc/hardware/tpm.nix | |
| parent | fastfetch: fix logo width (diff) | |
| download | nixos-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.nix | 18 |
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" ]; -} |