about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-05 04:47:00 +0200
committerGitHub <noreply@github.com>2024-04-05 04:47:00 +0200
commit2e26037aed0d58ea80b45e8652f412d2dc414a50 (patch)
tree4520b6bfa432845f324d666454eea694a9c18fff /pkgs/applications
parent826ce14773fae9976536e8a76ca404921ffc916e (diff)
parentdcccf09f976a9465c5fb265345921d3086a06d96 (diff)
Merge pull request #298463 from DeeUnderscore/misc/keepassxc-passkeys
keepassxc: add and enable passkeys build option
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/keepassxc/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/misc/keepassxc/default.nix b/pkgs/applications/misc/keepassxc/default.nix
index b40283538c87c..e74a45c02f311 100644
--- a/pkgs/applications/misc/keepassxc/default.nix
+++ b/pkgs/applications/misc/keepassxc/default.nix
@@ -27,6 +27,7 @@
 , LocalAuthentication
 
 , withKeePassBrowser ? true
+, withKeePassBrowserPasskeys ? true
 , withKeePassFDOSecrets ? true
 , withKeePassKeeShare ? true
 , withKeePassNetworking ? true
@@ -70,6 +71,7 @@ stdenv.mkDerivation rec {
   ++ (lib.optional (withKeePassFDOSecrets && stdenv.isLinux) "-DWITH_XC_FDOSECRETS=ON")
   ++ (lib.optional (withKeePassYubiKey && stdenv.isLinux) "-DWITH_XC_YUBIKEY=ON")
   ++ (lib.optional withKeePassBrowser "-DWITH_XC_BROWSER=ON")
+  ++ (lib.optional withKeePassBrowserPasskeys "-DWITH_XC_BROWSER_PASSKEYS=ON")
   ++ (lib.optional withKeePassKeeShare "-DWITH_XC_KEESHARE=ON")
   ++ (lib.optional withKeePassNetworking "-DWITH_XC_NETWORKING=ON")
   ++ (lib.optional withKeePassSSHAgent "-DWITH_XC_SSHAGENT=ON");