summaryrefslogtreecommitdiff
path: root/system/tpm.nix
blob: c7507da54755e30c10e9d77de417d93c100c4b45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  lib,
  config,
  ...
}: let
  inherit (lib) mkIf;
in {
  config = mkIf config.tpm {
    security.tpm2.enable = true;
    security.tpm2.pkcs11.enable = true;
    security.tpm2.tctiEnvironment.enable = true;
    users.groups.tss.members = [config.user];
  };
}