mirror of
https://github.com/callumio/nixfiles.git
synced 2026-08-07 04:59:16 +01:00
11 lines
207 B
Nix
11 lines
207 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.rbw = {
|
|
enable = true;
|
|
settings = {
|
|
base_url = "https://vaultwarden.cleslie.uk";
|
|
email = "vw@cleslie.uk";
|
|
pinentry = pkgs.pinentry-gnome3;
|
|
};
|
|
};
|
|
}
|