nixos-config/user/pass.nix

11 lines
266 B
Nix
Raw Normal View History

2022-11-07 19:35:50 -03:00
{ config, pkgs, lib, inputs, ... }: {
config = {
programs.password-store.enable = true;
services = {
pass-secret-service.enable = true;
password-store-sync.enable = true;
};
2022-12-01 23:13:00 -03:00
home.packages = with pkgs; [ pass wpass _gpg-unlock ];
2022-11-07 19:35:50 -03:00
};
}