Add nitrokey hardware
This commit is contained in:
parent
cf106a57fa
commit
3364a4505d
2 changed files with 14 additions and 0 deletions
3
nixos/includes/hardware/nitrokey.nix
Normal file
3
nixos/includes/hardware/nitrokey.nix
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
hardware.nitrokey.enable = true;
|
||||||
|
}
|
11
nixos/includes/system/sshclient.nix
Normal file
11
nixos/includes/system/sshclient.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue