7 lines
164 B
Nix
7 lines
164 B
Nix
{
|
|
flake.modules.homeManager.base =
|
|
{ config, ... }:
|
|
{
|
|
programs.password-store.settings.PASSWORD_STORE_DIR = "${config.xdg.dataHome}/pass";
|
|
};
|
|
}
|