13 lines
235 B
Nix
13 lines
235 B
Nix
{
|
|
pkgs,
|
|
username,
|
|
...
|
|
}: {
|
|
programs.password-store = {
|
|
enable = true;
|
|
settings = {
|
|
PASSWORD_STORE_DIR = "/home/${username}/.password-store";
|
|
};
|
|
package = pkgs.pass.withExtensions (e: [e.pass-otp]);
|
|
};
|
|
}
|