summary refs log tree commit diff stats
path: root/system/modules/hardware/nitrokey.nix
blob: a77ce00cf00fe02de08303ebe350fd155d2c0c11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, pkgs, lib, ... }:

{
  hardware.nitrokey = {
    enable = true;
  };

  services.pcscd.enable = true;

  environment.systemPackages = with pkgs; [
    nitrokey-app
  ];
}