mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
16 lines
253 B
Nix
16 lines
253 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.ssh.startAgent = false;
|
|
|
|
services.pcscd.enable = true;
|
|
|
|
hardware.ledger.enable = true;
|
|
|
|
services.udev.packages = with pkgs; [
|
|
yubikey-personalization
|
|
ledger-udev-rules
|
|
qmk-udev-rules
|
|
vial
|
|
via
|
|
];
|
|
}
|