diff options
author | Vincent Ambo <mail@tazj.in> | 2018-08-10T20·16+0200 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2018-08-10T20·16+0200 |
commit | 45e3207658645926aaf1811cae583bd0568f8dea (patch) | |
tree | d0f17d2bc03bd9d2416bdbabb1f80d4ecc333a10 /adho-configuration.nix | |
parent | ac88fee3705687ba9c84ef2ee8d4e891b2192e0f (diff) |
feat(adho): Add Yubikey PIV related tools
Diffstat (limited to 'adho-configuration.nix')
-rw-r--r-- | adho-configuration.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/adho-configuration.nix b/adho-configuration.nix index 7a4efc1499ab..12b858086f7c 100644 --- a/adho-configuration.nix +++ b/adho-configuration.nix @@ -13,6 +13,15 @@ services.avahi.enable = true; services.avahi.nssmdns = true; + # Yubikey related: + services.pcscd.enable = true; + environment.systemPackages = with pkgs; [ + cfssl + libp11 + opensc + yubico-piv-tool + ]; + networking = { hostName = "adho"; wireless.enable = true; |