From d8750d67127a7b44681c6fe6236061e4f33487f1 Mon Sep 17 00:00:00 2001 From: Ahmad Ansori Palembani Date: Tue, 16 Jul 2024 11:34:23 +0700 Subject: [PATCH] chore(nix): Only enable browserpass for chrome (arc) and brave --- .config/nix/darwin/configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.config/nix/darwin/configuration.nix b/.config/nix/darwin/configuration.nix index c0bf2bd..e36e8f1 100644 --- a/.config/nix/darwin/configuration.nix +++ b/.config/nix/darwin/configuration.nix @@ -100,7 +100,10 @@ home.stateVersion = "22.05"; programs = { - browserpass.enable = true; + browserpass = { + enable = true; + browsers = [ "brave" "chrome" ]; # Arc and Chrome share the same `Application Support` dir, not sure why tbh. + }; }; # Swap CapsLock with Esc for better vi-mode experience.