about summary refs log tree commit diff
path: root/home/profiles/security
diff options
context:
space:
mode:
Diffstat (limited to 'home/profiles/security')
-rw-r--r--home/profiles/security/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/home/profiles/security/default.nix b/home/profiles/security/default.nix
new file mode 100644
index 0000000..97bc0f3
--- /dev/null
+++ b/home/profiles/security/default.nix
@@ -0,0 +1,18 @@
+{ config, lib, pkgs, ... }:
+let cfg = config.profiles.security;
+in
+{
+  options.profiles.security = {
+    enable = lib.mkEnableOption
+      "Profile for security-related packages";
+  };
+
+  config = lib.mkIf cfg.enable {
+    home.packages = [
+      pkgs.yubikey-manager
+      pkgs.age-plugin-yubikey
+
+      pkgs.keepassxc
+    ];
+  };
+}