14 lines
181 B
Nix
14 lines
181 B
Nix
{ username, ... }:
|
|
|
|
let
|
|
home = "/home/${username}";
|
|
in
|
|
{
|
|
programs.password-store = {
|
|
enable = true;
|
|
settings = {
|
|
PASSWORD_STORE_DIR = "${home}/.password-store";
|
|
};
|
|
};
|
|
}
|