12 lines
192 B
Nix
Executable file
12 lines
192 B
Nix
Executable file
{ baseUrl, email }:
|
|
{ pkgs, ... }:
|
|
{
|
|
programs.rbw = {
|
|
enable = true;
|
|
settings = {
|
|
email = email;
|
|
base_url = baseUrl;
|
|
pinentry = pkgs.pinentry-gnome3;
|
|
};
|
|
};
|
|
}
|