This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-config/user/pass.nix

11 lines
266 B
Nix
Raw Normal View History

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