10 lines
166 B
Nix
10 lines
166 B
Nix
{ ... }: {
|
|
security.tpm2 = {
|
|
enable = true;
|
|
pkcs11.enable = true;
|
|
tctiEnvironment.enable = true;
|
|
};
|
|
|
|
users.users.artemis.extraGroups = [ "tss" ];
|
|
}
|