nix-config/modules2/password-store/package.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

17 lines
441 B
Nix

{ lib, ... }:
{
flake.modules.homeManager.base =
{ config, pkgs, ... }:
{
options.programs.password-store.extensions = lib.mkOption {
default = [ ];
type = lib.types.listOf lib.types.package;
description = "pass extensions to install.";
};
config.programs.password-store.package = pkgs.pass.withExtensions (
e: with e; config.programs.password-store.extensions
);
};
}