mirror of
https://github.com/nix-community/home-manager.git
synced 2026-06-05 21:02:51 +00:00
87 lines
2.3 KiB
Nix
87 lines
2.3 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
options,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) literalExpression mkOption types;
|
|
|
|
cfg = config.programs.password-store;
|
|
|
|
settingsStateVersion = lib.hm.deprecations.mkStateVersionOptionDefault {
|
|
inherit (config.home) stateVersion;
|
|
inherit config options;
|
|
since = "25.11";
|
|
optionPath = [
|
|
"programs"
|
|
"password-store"
|
|
"settings"
|
|
];
|
|
legacy = {
|
|
value = {
|
|
PASSWORD_STORE_DIR = "${config.xdg.dataHome}/password-store";
|
|
};
|
|
text = ''{ PASSWORD_STORE_DIR = "''${config.xdg.dataHome}/password-store"; }'';
|
|
};
|
|
current.value = { };
|
|
deferWarningToConfig = true;
|
|
};
|
|
|
|
legacyCompatibleSettings =
|
|
lib.optionalAttrs settingsStateVersion.shouldWarn settingsStateVersion.effectiveDefault
|
|
// cfg.settings;
|
|
in
|
|
{
|
|
meta.maintainers = with lib.maintainers; [ euxane ];
|
|
|
|
options.programs.password-store = {
|
|
enable = lib.mkEnableOption "Password store";
|
|
|
|
package = lib.mkPackageOption pkgs "pass" {
|
|
example = "pkgs.pass.withExtensions (exts: [ exts.pass-otp ])";
|
|
extraDescription = "Can be used to specify extensions.";
|
|
};
|
|
|
|
settings = mkOption {
|
|
type = with types; attrsOf str;
|
|
inherit (settingsStateVersion) default defaultText;
|
|
example = literalExpression ''
|
|
{
|
|
PASSWORD_STORE_DIR = "$\{config.xdg.dataHome\}/password-store";
|
|
PASSWORD_STORE_KEY = "12345678";
|
|
PASSWORD_STORE_CLIP_TIME = "60";
|
|
}
|
|
'';
|
|
description = ''
|
|
The `pass` environment variables dictionary.
|
|
|
|
See the "Environment variables" section of
|
|
{manpage}`pass(1)`
|
|
and the extension man pages for more information about the
|
|
available keys.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
warnings = lib.optional settingsStateVersion.shouldWarn settingsStateVersion.warning;
|
|
|
|
home = {
|
|
packages = [ cfg.package ];
|
|
sessionVariables = legacyCompatibleSettings;
|
|
};
|
|
|
|
services.pass-secret-service =
|
|
lib.mkIf (builtins.hasAttr "PASSWORD_STORE_DIR" legacyCompatibleSettings)
|
|
{
|
|
storePath = legacyCompatibleSettings.PASSWORD_STORE_DIR;
|
|
};
|
|
|
|
xsession.importedVariables = lib.mkIf config.xsession.enable (
|
|
lib.mapAttrsToList (name: _value: name) legacyCompatibleSettings
|
|
);
|
|
};
|
|
}
|