mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
10 lines
227 B
Nix
10 lines
227 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.password-store = {
|
|
enable = true;
|
|
settings = {
|
|
PASSWORD_STORE_DIR = "$HOME/.local/share/password-store";
|
|
};
|
|
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
|
|
};
|
|
}
|