winter: add apricot sshfs mount

This commit is contained in:
LavaDesu 2021-08-22 14:50:28 +07:00
parent a465af7a93
commit 6d5d7e1535
Signed by: cilly
GPG key ID: 6500251E087653C9
2 changed files with 13 additions and 0 deletions

View file

@ -31,5 +31,17 @@ in
# fsType = "nfs";
# options = [ "defaults" ];
# };
"/mnt/apricot" = {
device = "rin@apricot:/";
fsType = "fuse.sshfs";
options = [
"noauto"
"x-systemd.automount"
"_netdev"
"IdentityFile=/home/rin/.ssh/id_rsa"
"allow_other"
"reconnect"
];
};
};
}