ADD nitrokey support

main
LUCAZEAU Alexandre 2023-11-25 21:19:34 +01:00
parent b6908d9fb5
commit b9cd78e43a
2 changed files with 15 additions and 0 deletions

View File

@ -11,6 +11,7 @@
./services.nix
./extra_hw.nix
./gnome.nix
./nitrokey.nix
];
boot = {

View File

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