moved support for smart cards and yubikey tools to extra

This commit is contained in:
Sven Vogel 2023-11-17 18:42:30 +01:00
parent 58f407e2be
commit 31ee5532b2
2 changed files with 12 additions and 8 deletions

12
extra/yubikey.nix Normal file
View File

@ -0,0 +1,12 @@
{ pkgs, config, ... }: {
services.pcscd.enable = true; # enable support for smart cards
environment.systemPackages = with pkgs; [
# Yubikey stuff
yubioath-flutter # Yubico authentictor app for managing accounts
yubikey-manager # CLI tool for ykman
yubikey-manager-qt # GUI tool for ykman
pcsclite
];
}

View File

@ -9,8 +9,6 @@
# #
# Configuration for user servostar # Configuration for user servostar
services.pcscd.enable = true; # enable support for smart cards
services.printing.enable = true; services.printing.enable = true;
services.avahi.enable = true; services.avahi.enable = true;
# for a WiFi printer # for a WiFi printer
@ -133,12 +131,6 @@
tor tor
xournalpp xournalpp
# Yubikey stuff
yubioath-flutter # Yubico authentictor app for managing accounts
yubikey-manager # CLI tool for ykman
yubikey-manager-qt # GUI tool for ykman
pcsclite
jetbrains-toolbox jetbrains-toolbox
]; ];
}; };