From 9376b78f49fff4227bf10ef62d8ca4bfea68b37f Mon Sep 17 00:00:00 2001 From: sefidel Date: Thu, 21 Dec 2023 22:08:26 +0900 Subject: feat(home/browsing): add bitwarden to qutebrowser --- home/profiles/browsing/default.nix | 8 ++++++++ home/profiles/gui/config/sway.nix | 3 +++ home/profiles/security/default.nix | 3 +++ 3 files changed, 14 insertions(+) (limited to 'home/profiles') diff --git a/home/profiles/browsing/default.nix b/home/profiles/browsing/default.nix index 5c04438..6a59d1b 100644 --- a/home/profiles/browsing/default.nix +++ b/home/profiles/browsing/default.nix @@ -3,6 +3,8 @@ let cfg = config.profiles.browsing; fixSopsPrefix = x: y: builtins.replaceStrings [ "%r" ] [ "/run/user/${toString x}" ] y; + + bemenuPrompt = "${pkgs.bemenu}/bin/bemenu -H 18 -l 5 -c -W 0.4 -B 3"; in { options.profiles.browsing = { @@ -43,6 +45,12 @@ in sourcehut = "https://sr.ht"; }; + keyBindings = { + normal = { + "" = "spawn --userscript qute-bitwarden -d='${bemenuPrompt} -p \"Bitwarden\"' -p='${bemenuPrompt} -p \"Bitwarden Master Passphrase Entry\" --password'"; + }; + }; + settings = import ./qutebrowser-settings.nix // { url.default_page = "https://kagi.com"; diff --git a/home/profiles/gui/config/sway.nix b/home/profiles/gui/config/sway.nix index 5dbe7a7..d5e0704 100644 --- a/home/profiles/gui/config/sway.nix +++ b/home/profiles/gui/config/sway.nix @@ -14,6 +14,9 @@ in # HACK: https://todo.sr.ht/~emersion/kanshi/35 exec_always "systemctl --user restart kanshi.service" + # Link keychain: https://github.com/systemd/systemd/issues/5522#issuecomment-309226589 + exec [ -x "$(command -v keyctl)" ] && keyctl link @u @s + # set modifiers set $mod Mod4 set $alt Mod1 diff --git a/home/profiles/security/default.nix b/home/profiles/security/default.nix index d1df23e..1df0dec 100644 --- a/home/profiles/security/default.nix +++ b/home/profiles/security/default.nix @@ -14,6 +14,9 @@ in pkgs.keepassxc pkgs.bitwarden + pkgs.bitwarden-cli + + pkgs.keyutils ]; }; } -- cgit 1.4.1