This commit is contained in:
Tasia Iso 2024-10-04 20:25:54 +02:00
parent 839a8c5797
commit 63dd09bc8e
Signed by: tasiaiso
SSH key fingerprint: SHA256:KiRjUay5C9i6objsEOIycygBHn54pDBB3Lj7fyJ0Elw
4 changed files with 15 additions and 1 deletions

View file

@ -38,6 +38,8 @@
# Baofeng programmer # Baofeng programmer
allow id 067b:2303 serial "" name "USB-Serial Controller D" allow id 067b:2303 serial "" name "USB-Serial Controller D"
allow id 1050:0407 serial "" name "YubiKey OTP+FIDO+CCID"
''; '';
}; };
} }

View file

@ -65,7 +65,7 @@
picard picard
kleopatra kleopatra
qbittorrent qbittorrent
tor-browser # tor-browser
ssb-patchwork ssb-patchwork
pixelorama pixelorama

View file

@ -51,6 +51,7 @@ in {
# Personal modules # Personal modules
# ../../modules/nixos/tildefriends.nix # ../../modules/nixos/tildefriends.nix
./yubikey.nix
]; ];
# RGB Keyboard backight # RGB Keyboard backight
@ -126,6 +127,7 @@ in {
lynx lynx
chirp chirp
yubikey-manager
inputs.agenix.packages.x86_64-linux.default inputs.agenix.packages.x86_64-linux.default
]; ];

10
hosts/yaseen/yubikey.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ...
}: {
# services.udev.packages = [ pkgs.yubikey-personalization ];
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
# };
}