From e5d8baafcdfb307c6438bf28f2fd7495fea9833d Mon Sep 17 00:00:00 2001 From: tomf Date: Thu, 14 Sep 2023 20:15:32 +0000 Subject: [PATCH] nixos/yubikey-touch-detector: init (#254947) * nixos/yubikey-touch-detector: init * nixos/yubikey-touch-detector: enable user socket --- nixos/modules/module-list.nix | 1 + .../programs/yubikey-touch-detector.nix | 21 +++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 nixos/modules/programs/yubikey-touch-detector.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 2eb5f8f157bf..461c43a42418 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -280,6 +280,7 @@ ./programs/xwayland.nix ./programs/yabar.nix ./programs/yazi.nix + ./programs/yubikey-touch-detector.nix ./programs/zmap.nix ./programs/zsh/oh-my-zsh.nix ./programs/zsh/zsh-autoenv.nix diff --git a/nixos/modules/programs/yubikey-touch-detector.nix b/nixos/modules/programs/yubikey-touch-detector.nix new file mode 100644 index 000000000000..9a0d107f73c9 --- /dev/null +++ b/nixos/modules/programs/yubikey-touch-detector.nix @@ -0,0 +1,21 @@ +{ config, lib, pkgs, ... }: +let cfg = config.programs.yubikey-touch-detector; +in { + options = { + programs.yubikey-touch-detector = { + enable = lib.mkEnableOption "yubikey-touch-detector"; + }; + }; + + config = lib.mkIf cfg.enable { + systemd.packages = [ pkgs.yubikey-touch-detector ]; + + systemd.user.services.yubikey-touch-detector = { + path = [ pkgs.gnupg ]; + wantedBy = [ "graphical-session.target" ]; + }; + systemd.user.sockets.yubikey-touch-detector = { + wantedBy = [ "sockets.target" ]; + }; + }; +}