10 lines
230 B
Nix
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 ];
|
|
|
|
}
|