nixpkgs/nixos/modules/services/security/pass-secret-service.nix
Aidan Gauland 9bf50ebcdf treewide: remove aidalgol
- Remove aidalgol from maintainers and all packages.
- Add maintainers to tests from their corresponding packages.
- Remove package 'heroic' because this will quickly bitrot without a
  maintainer.
2025-10-02 17:42:00 +13:00

26 lines
522 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.passSecretService;
in
{
options.services.passSecretService = {
enable = lib.mkEnableOption "pass secret service";
package = lib.mkPackageOption pkgs "pass-secret-service" {
example = "pass-secret-service.override { python3 = pkgs.python310 }";
};
};
config = lib.mkIf cfg.enable {
systemd.packages = [ cfg.package ];
services.dbus.packages = [ cfg.package ];
};
meta.maintainers = with lib.maintainers; [ jluttine ];
}