12 lines
252 B
Nix
12 lines
252 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.password-store = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
PASSWORD_STORE_DIR = "${config.home.homeDirectory}/.password-store";
|
||
|
PASSWORD_STORE_KEY = "B51D4548A4846E3C8D115C808333CFB0B9D3244D";
|
||
|
};
|
||
|
};
|
||
|
}
|