added yubikey.nix

This commit is contained in:
2024-09-19 18:19:29 -04:00
parent 9e7c595e35
commit c3ba9a7e78
3 changed files with 10 additions and 0 deletions

View File

@@ -131,6 +131,7 @@
"overseerr", "overseerr",
"pbmode", "pbmode",
"pciutils", "pciutils",
"pcscd",
"pdfjs", "pdfjs",
"peerconnection", "peerconnection",
"PESKYFOX", "PESKYFOX",
@@ -215,6 +216,8 @@
"wireshark", "wireshark",
"xattr", "xattr",
"xhci", "xhci",
"yubikey",
"yubioath",
"yzhang", "yzhang",
"zerotier", "zerotier",
"zerotierone", "zerotierone",

View File

@@ -13,6 +13,7 @@
../common/optional/syncthing_base.nix ../common/optional/syncthing_base.nix
../common/optional/systemd-boot.nix ../common/optional/systemd-boot.nix
../common/optional/zerotier.nix ../common/optional/zerotier.nix
../common/optional/yubikey.nix
./hardware.nix ./hardware.nix
./nvidia.nix ./nvidia.nix
]; ];

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
services.pcscd.enable = true;
environment.systemPackages = [ pkgs.yubioath-flutter ];
}