7 lines
189 B
Nix
7 lines
189 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
services.tcsd.enable = true;
|
||
|
# see https://wiki.archlinux.org/index.php/Trusted_Platform_Module
|
||
|
environment.systemPackages = with pkgs; [ opencryptoki tpm-tools ];
|
||
|
}
|