From ae6fcee1f54dd122d6171865edd1a8f10ef0b154 Mon Sep 17 00:00:00 2001 From: illustris Date: Thu, 1 Sep 2022 19:40:12 +0530 Subject: [PATCH] add browserpass --- modules/chromium/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/chromium/default.nix b/modules/chromium/default.nix index 13eed6f..7f6334d 100644 --- a/modules/chromium/default.nix +++ b/modules/chromium/default.nix @@ -1,6 +1,7 @@ { pkgs, ... }: { + programs.browserpass.enable = true; programs.chromium = { enable = true; extensions = [ @@ -13,6 +14,7 @@ "chlffgpmiacpedhhbkiomidkjlcfhogd" # pushbullet "aghfnjkcakhmadgdomlmlhhaocbkloab" # just black "fmkadmapgofadopljbjfkapdkoienihi" # React Developer Tools + "naepdomgkenhinolocfifgehidddafch" # Browserpass ]; homepageLocation = "https://sx.illustris.tech/"; defaultSearchProviderSuggestURL = "https://sx.illustris.tech/autocompleter?q={searchTerms}"; @@ -26,4 +28,4 @@ environment.systemPackages = with pkgs; [ ungoogled-chromium ]; -} \ No newline at end of file +}