mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
9f9e277b60
These (and the `*MD` functions apart from `literalMD`) are now no-ops in nixpkgs and serve no purpose other than to add additional noise and potentially mislead people into thinking unmarked DocBook documentation will still be accepted. Note that if backporting changes including documentation to 23.05, the `mdDoc` calls will need to be re-added. To reproduce this commit, run: $ NIX_PATH=nixpkgs=flake:nixpkgs/e7e69199f0372364a6106a1e735f68604f4c5a25 \ nix shell nixpkgs#coreutils \ -c find . -name '*.nix' \ -exec nix run -- github:emilazy/nix-doc-munge/98dadf1f77351c2ba5dcb709a2a171d655f15099 \ --strip {} + $ ./format
69 lines
2 KiB
Nix
69 lines
2 KiB
Nix
{ pkgs, config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.pass-secret-service;
|
|
|
|
busName = "org.freedesktop.secrets";
|
|
in {
|
|
meta.maintainers = with maintainers; [ cab404 cyntheticfox ];
|
|
|
|
options.services.pass-secret-service = {
|
|
enable = mkEnableOption "Pass libsecret service";
|
|
|
|
package = mkPackageOption pkgs "pass-secret-service" { };
|
|
|
|
storePath = mkOption {
|
|
type = with types; nullOr str;
|
|
default = null;
|
|
defaultText = "$HOME/.password-store";
|
|
example = "/home/user/.local/share/password-store";
|
|
description = ''
|
|
Absolute path to password store. Defaults to
|
|
{file}`$HOME/.password-store` if the
|
|
{option}`programs.password-store` module is not enabled, and
|
|
{option}`programs.password-store.settings.PASSWORD_STORE_DIR` if it is.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
assertions = [
|
|
(hm.assertions.assertPlatform "services.pass-secret-service" pkgs
|
|
platforms.linux)
|
|
{
|
|
assertion = !config.services.gnome-keyring.enable;
|
|
message = ''
|
|
Only one secrets service per user can be enabled at a time.
|
|
Other services enabled:
|
|
- gnome-keyring
|
|
'';
|
|
}
|
|
];
|
|
|
|
systemd.user.services.pass-secret-service =
|
|
let binPath = "${cfg.package}/bin/pass_secret_service";
|
|
in {
|
|
Unit = {
|
|
AssertFileIsExecutable = "${binPath}";
|
|
Description = "Pass libsecret service";
|
|
Documentation = "https://github.com/mdellweg/pass_secret_service";
|
|
PartOf = [ "default.target" ];
|
|
};
|
|
|
|
Service = {
|
|
Type = "dbus";
|
|
ExecStart = "${binPath} ${
|
|
optionalString (cfg.storePath != null) "--path ${cfg.storePath}"
|
|
}";
|
|
BusName = busName;
|
|
};
|
|
|
|
Install.WantedBy = [ "default.target" ];
|
|
};
|
|
|
|
xdg.dataFile."dbus-1/services/${busName}.service".source =
|
|
"${cfg.package}/share/dbus-1/services/${busName}.service";
|
|
};
|
|
}
|