feat: initial commit
This commit is contained in:
commit
428f2b7089
11 changed files with 608 additions and 0 deletions
13
modules/home-manager/pass.nix
Normal file
13
modules/home-manager/pass.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.password-store = {
|
||||
enable = true;
|
||||
settings = {
|
||||
PASSWORD_STORE_DIR="$HOME/.password-store";
|
||||
PASSWORD_STORE_GENERATED_LENGTH = "20";
|
||||
PASSWORD_STORE_ENABLE_EXTENSIONS = "true";
|
||||
};
|
||||
};
|
||||
programs.browserpass.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue