nixos-config/sets/tpm.nix

11 lines
166 B
Nix
Raw Normal View History

2024-03-02 03:13:17 +00:00
{ ... }:
{
security.tpm2 = {
enable = true;
pkcs11.enable = true;
tctiEnvironment.enable = true;
};
users.users.artemis.extraGroups = [ "tss" ];
}