nixos-config/configs/workhorse/bitwarden.nix
2021-07-13 22:33:16 +02:00

10 lines
230 B
Nix

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