mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
16 lines
279 B
Nix
16 lines
279 B
Nix
{
|
|
pkgs,
|
|
tree,
|
|
...
|
|
}: {
|
|
programs.rbw = {
|
|
enable = true;
|
|
settings = {
|
|
inherit (tree.home.user.data) email;
|
|
base_url = "https://bw.gensokyo.zone";
|
|
identity_url = null;
|
|
pinentry = pkgs.pinentry-gnome3;
|
|
lock_timeout = 3600;
|
|
};
|
|
};
|
|
}
|