Rclone configuration

This commit is contained in:
Filippo Berto 2025-04-24 11:10:39 +02:00
parent 608808f8a2
commit 922e48d87e
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED
30 changed files with 426 additions and 462 deletions

View file

@ -0,0 +1,8 @@
{ config, nixosConfig, ... }: {
imports = [ ./rclone-mount.nix ];
rclone-mount = {
enable = true;
configPath = nixosConfig.age.secrets."minio_${config.home.username}".path;
mounts = { "minio" = "/home/${config.home.username}/minio/"; };
};
}