aboutsummaryrefslogtreecommitdiffstats
path: root/home/sadbeast/features/pass.nix
blob: 0a64f4156f536c96f90997a3dc1aced991934476 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  pkgs,
  config,
  ...
}: {
  programs.password-store = {
    enable = true;
    settings = {
      PASSWORD_STORE_DIR = "$HOME/.password-store";
    };
    package = pkgs.pass.withExtensions (p: [p.pass-otp]);
  };

  # home.persistence = {
  #   "/persistent${config.home.homeDirectory}".directories = [".password-store"];
  # };
}