nix-config/modules2/hosts/t480/password-store.nix
Oliver Davies 6a12ea4b0e
All checks were successful
/ check (push) Successful in 1m34s
Move password-store configuration
2025-07-25 00:25:08 +01:00

11 lines
207 B
Nix

{
flake.modules.homeManager.base =
{ pkgs, ... }:
{
programs.password-store.extensions = with pkgs.passExtensions; [
pass-audit
pass-otp
pass-update
];
};
}