nix-config/modules2/hosts/t480/password-store.nix

12 lines
207 B
Nix
Raw Normal View History

2025-07-25 00:25:08 +01:00
{
flake.modules.homeManager.base =
{ pkgs, ... }:
{
programs.password-store.extensions = with pkgs.passExtensions; [
pass-audit
pass-otp
pass-update
];
};
}