nixos-config/configs/workhorse/bitwarden.nix
2021-07-10 20:01:31 +02:00

14 lines
239 B
Nix

{config, lib, pkgs, ... }:
{
services.bitwarden_rs = {
enable = true;
backupDir = "/home/bitwarden_backups";
config = {
signupsAllowed = true;
};
};
backup.dirs = [ config.services.bitwarden_rs.backupDir ];
}