From 5445a30150be452a489b86eebdcc8d0def51956e Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sat, 18 May 2024 18:17:44 +0200 Subject: [PATCH] pass: Enable secret service --- users/simon/modules/pass.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/users/simon/modules/pass.nix b/users/simon/modules/pass.nix index d5ccc05..bf98064 100644 --- a/users/simon/modules/pass.nix +++ b/users/simon/modules/pass.nix @@ -1,8 +1,8 @@ -# SPDX-FileCopyrightText: 2020 Simon Bruder +# SPDX-FileCopyrightText: 2020-2024 Simon Bruder # # SPDX-License-Identifier: AGPL-3.0-or-later -{ pkgs, ... }: +{ config, pkgs, ... }: { programs.password-store = { enable = true; @@ -19,4 +19,9 @@ enable = true; browsers = [ "librewolf" ]; }; + + services.pass-secret-service = { + enable = true; + storePath = "${config.xdg.dataHome}/secret-service-password-store"; + }; }