blob: 29e19e916e047f629d28db7041b16a726c61a8e1 (
plain)
1
2
3
4
5
6
|
{ pkgs, ... }:
{
services.tcsd.enable = true;
# see https://wiki.archlinux.org/index.php/Trusted_Platform_Module
environment.systemPackages = with pkgs; [ opencryptoki tpm-tools ];
}
|