aboutsummaryrefslogtreecommitdiff
path: root/home/age
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/age
parentfix(home/firefox): move plugins to the profile (diff)
downloadinfra-5bf62955137d699cdeab369391be296d3d12cf70.tar.gz
feat(home/age): install tooling related to age and yubikeys
Diffstat (limited to 'home/age')
-rw-r--r--home/age/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/home/age/default.nix b/home/age/default.nix
new file mode 100644
index 0000000..0e2fd13
--- /dev/null
+++ b/home/age/default.nix
@@ -0,0 +1,16 @@
+{ pkgs, config, lib, ... }:
+let cfg = config.my.home.age;
+in
+{
+ options.my.home.age = with lib; {
+ enable = mkEnableOption "r|age tooling";
+ };
+
+ config = lib.mkIf cfg.enable {
+ home.packages = with pkgs; [
+ age # https://github.com/FiloSottile/age
+ rage # https://github.com/str4d/rage
+ age-plugin-yubikey # https://github.com/str4d/age-plugin-yubikey
+ ];
+ };
+}