removed browserpass

feat/kile-v2
Ricard Illa 2022-07-12 10:46:51 +02:00
parent fca2294df1
commit 37a51b7404
No known key found for this signature in database
GPG Key ID: F69A672B72E54902
2 changed files with 7 additions and 16 deletions

View File

@ -1,13 +0,0 @@
{ config, pkgs, ... }:
{
programs.password-store = {
enable = true;
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
settings = {
PASSWORD_STORE_DIR = "${config.home.homeDirectory}/.password-store";
PASSWORD_STORE_KEY = "B51D4548A4846E3C8D115C808333CFB0B9D3244D";
};
};
home.packages = [pkgs.zbar];
}

View File

@ -1,9 +1,13 @@
{ config, pkgs, ... }:
{
imports = [ ./common.nix ];
programs.browserpass = {
programs.password-store = {
enable = true;
browsers = [ "firefox" "chromium" ];
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
settings = {
PASSWORD_STORE_DIR = "${config.home.homeDirectory}/.password-store";
PASSWORD_STORE_KEY = "B51D4548A4846E3C8D115C808333CFB0B9D3244D";
};
};
home.packages = [pkgs.zbar];
}