mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 16:36:24 +00:00
17 lines
499 B
Nix
17 lines
499 B
Nix
{ pkgs, config, ... }: {
|
|
programs.password-store = {
|
|
enable = true;
|
|
settings = { PASSWORD_STORE_DIR = "$HOME/.password-store"; };
|
|
package = pkgs.pass.withExtensions (p: [ p.pass-otp ]);
|
|
};
|
|
|
|
services.pass-secret-service = {
|
|
enable = true;
|
|
storePath = "${config.home.homeDirectory}/.password-store";
|
|
extraArgs = [ "-e${config.programs.password-store.package}/bin/pass" ];
|
|
};
|
|
|
|
home.persistence = {
|
|
"/persist/home/gburd".directories = [ ".password-store" ];
|
|
};
|
|
}
|