nixos-config/sets/tpm.nix

10 lines
166 B
Nix

{ ... }: {
security.tpm2 = {
enable = true;
pkcs11.enable = true;
tctiEnvironment.enable = true;
};
users.users.artemis.extraGroups = [ "tss" ];
}