🚀 add yubikey module
parent
c825a0a7fd
commit
45e31b3ca3
|
@ -10,6 +10,7 @@
|
|||
./ssh.nix
|
||||
./shell
|
||||
./spotify.nix
|
||||
./yubikey.nix
|
||||
];
|
||||
modules.cli.shell = let
|
||||
# HACK to fix 24bit color support with kitty
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.udev.packages = [ pkgs.yubikey-personalization ];
|
||||
home-manager.users.moritz.home.packages = with pkgs; [
|
||||
# cli
|
||||
yubikey-manager
|
||||
yubikey-personalization
|
||||
paperkey
|
||||
stable.haskellPackages.hopenpgp-tools
|
||||
# graphical
|
||||
yubikey-manager-qt
|
||||
yubikey-personalization-gui
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue