nixos-config/configs/workhorse/bitwarden.nix

11 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 ];
}