ADD nitrokey support
This commit is contained in:
parent
b6908d9fb5
commit
b9cd78e43a
|
@ -11,6 +11,7 @@
|
|||
./services.nix
|
||||
./extra_hw.nix
|
||||
./gnome.nix
|
||||
./nitrokey.nix
|
||||
];
|
||||
|
||||
boot = {
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
{config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
hardware.nitrokey = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
services.pcscd.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
nitrokey-app
|
||||
];
|
||||
}
|
||||
|
Loading…
Reference in New Issue