nixos-config/hosts/d2nix/nixos/nitrokey.nix

15 lines
182 B
Nix
Raw Normal View History

2023-11-25 20:19:34 +00:00
{config, pkgs, lib, ... }:
{
hardware.nitrokey = {
enable = true;
};
services.pcscd.enable = true;
environment.systemPackages = with pkgs; [
nitrokey-app
];
}