mail and password store
This commit is contained in:
parent
4cf458aacb
commit
deebde0386
6 changed files with 29 additions and 7 deletions
14
home/password-store.nix
Normal file
14
home/password-store.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# services.gnome.gnome-keyring.enable = lib.mkForce false;
|
||||
# services.gnome.gnome-keyring.enable = false;
|
||||
services.pass-secret-service.enable = true;
|
||||
|
||||
programs.password-store = {
|
||||
enable = true;
|
||||
settings = {
|
||||
PASSWORD_STORE_DIR = "$XDG_DATA_HOME/crypto/password-store";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue