nixos-config/user/pass.nix

16 lines
362 B
Nix
Raw Normal View History

2022-11-07 19:35:50 -03:00
{ config, pkgs, lib, inputs, ... }: {
config = {
2023-08-07 19:58:05 -03:00
programs.password-store = {
enable = true;
package = pkgs.pass.withExtensions (ex: with ex; [
pass-otp
]);
};
2022-11-07 19:35:50 -03:00
services = {
pass-secret-service.enable = true;
password-store-sync.enable = true;
};
2023-08-07 19:58:05 -03:00
home.packages = with pkgs; [ wpass _gpg-unlock ];
2022-11-07 19:35:50 -03:00
};
}