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

15 lines
182 B
Nix

{config, pkgs, lib, ... }:
{
hardware.nitrokey = {
enable = true;
};
services.pcscd.enable = true;
environment.systemPackages = with pkgs; [
nitrokey-app
];
}