nixconfigs/common/nitrokey.nix
Trolli Schmittlauch c2eaf4418a nitrokey: install companion app
though the app is currently suffering from incompatibility with its
corresponding library -> FIXME
2025-09-14 18:45:56 +02:00

13 lines
305 B
Nix

{ pkgs, lib, ... }:
{
hardware.nitrokey.enable = true;
environment.systemPackages = [ pkgs.pynitrokey pkgs.nitrokey-app2 ];
nixpkgs.config.allowUnfreePredicate =
pkg:
builtins.elem (lib.getName pkg) [
"nrfutil"
"pc-ble-driver-py"
"pc-ble-driver"
"pypemicro"
];
}