fixed yubikey.nix missing import

This commit is contained in:
Sven Vogel 2023-12-15 18:58:36 +01:00
parent eca53b8eb5
commit a566322eee
1 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
{ pkgs, config, ... }: {
{ pkgs, lib, ... }:
let
settings = import ./../settings.nix;
in
{
services.pcscd.enable = true; # enable support for smart cards
environment.systemPackages = with pkgs; [ pcsclite ]