Add nitrokey hardware

This commit is contained in:
Yorick Barbanneau 2023-12-03 16:48:54 +01:00
parent cf106a57fa
commit 3364a4505d
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,3 @@
{
hardware.nitrokey.enable = true;
}

View file

@ -0,0 +1,11 @@
{pkgs, ...}:
{
environment.systemPackages = with pkgs; [
lxqt.lxqt-openssh-askpass
];
programs.ssh = {
startAgent = false;
enableAskPassword = true;
askPassword = "${pkgs.lxqt.lxqt-openssh-askpass}/bin/lxqt-openssh-askpass";
};
}