nix-dotfiles/hm/rclone-mount-bertof.nix

11 lines
349 B
Nix

{ config, nixosConfig, ... }: {
imports = [ ./rclone-mount.nix ];
rclone-mount = {
enable = true;
configPath = nixosConfig.age.secrets."rclone_${config.home.username}".path;
mounts = {
"minio" = "/home/${config.home.username}/rclone/minio/";
"nextcloud" = "/home/${config.home.username}/rclone/nextcloud/";
};
};
}