about summary refs log tree commit diff
path: root/home/yubikey
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-02-12 08:13:30 -0800
committerFranck Cuny <franck@fcuny.net>2023-02-20 13:29:47 -0800
commit5bf62955137d699cdeab369391be296d3d12cf70 (patch)
tree0ef16f945e1e8c490a95c02095bf122c1c2e442f /home/yubikey
parentfix(home/firefox): move plugins to the profile (diff)
downloadworld-5bf62955137d699cdeab369391be296d3d12cf70.tar.gz
feat(home/age): install tooling related to age and yubikeys
Diffstat (limited to 'home/yubikey')
-rw-r--r--home/yubikey/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/home/yubikey/default.nix b/home/yubikey/default.nix
new file mode 100644
index 0000000..640ed09
--- /dev/null
+++ b/home/yubikey/default.nix
@@ -0,0 +1,12 @@
+{ pkgs, config, lib, ... }:
+let cfg = config.my.home.yubikey;
+in
+{
+  options.my.home.yubikey = with lib; {
+    enable = mkEnableOption "yubikey tooling";
+  };
+
+  config = lib.mkIf cfg.enable {
+    home.packages = with pkgs; [ yubikey-manager ];
+  };
+}