Add rclone service

This commit is contained in:
Nathan McCarty 2022-01-31 18:04:46 -05:00
parent b224ab01cb
commit 2bee56b0cb
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
1 changed files with 12 additions and 0 deletions

View File

@ -14,4 +14,16 @@
# Soulseek client # Soulseek client
nicotine-plus nicotine-plus
]; ];
# Mount music directory
systemd.user.services.rclone-music = {
description = "Rclone mount ~/Music";
serviceConfig = {
# So we can pick up the fusermount wrapper, this is a less than ideal way to do this
Environment = "PATH=/usr/bin:/run/wrappers/bin/";
Type = "notify";
ExecStart = "${pkgs.rclone}/bin/rclone mount music: /home/nathan/Music --vfs-cache-mode full --vfs-cache-max-size 32Gi --vfs-read-chunk-size 4Mi --vfs-read-ahead 8Mi --config /home/nathan/.config/rclone/rclone.conf --cache-dir /home/nathan/.cache/rclone";
};
enable = true;
};
} }