Add volume mount

This commit is contained in:
Maxiem Geldhof 2025-10-31 18:40:32 +01:00
parent 8e42f81a19
commit 0a562c94ba
3 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ path keypath }:
{
environment.systemPackages = [ pkgs.rclone ];
environment.etc."rclone-mnt.conf".text = ''
[myremote]
type = sftp
host = u504615.your-storagebox.de
user = u504615
key_file = ${keypath}
'';
fileSystems."${path}" = {
device = "myremote:/";
fsType = "rclone";
options = [
"nodev"
"nofail"
"allow_other"
"args2env"
"config=/etc/rclone-mnt.conf"
];
};
}