15 lines
510 B
Nix
15 lines
510 B
Nix
{ config, pkgs, lib, ... }: {
|
|
home-manager.users.balsoft.systemd.user.services.yubikey-touch-detector = {
|
|
Service = {
|
|
Environment = [ "PATH=${lib.makeBinPath [ pkgs.gnupg pkgs.yubikey-touch-detector ]}" ];
|
|
ExecStart = toString (pkgs.writeShellScript "yubikey-touch-detector" ''
|
|
export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)"
|
|
yubikey-touch-detector -libnotify
|
|
'');
|
|
};
|
|
Install = rec {
|
|
WantedBy = [ "graphical-session.target" ];
|
|
};
|
|
};
|
|
}
|