1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2024-02-26 19:27:27 +01:00
parent 1f7771ec3f
commit 550ce08e41
7 changed files with 36 additions and 28 deletions

View file

@ -9,20 +9,6 @@
group = "nextcloud";
};
system.fsPackages = [pkgs.sshfs];
fileSystems."${config.services.nextcloud.home}/data/${config.services.nextcloud.config.adminuser}/files/remote" = {
device = "u385962@u385962.your-storagebox.de:/";
fsType = "sshfs";
options = [
"allow_other"
"IdentityFile=/persist/etc/ssh/ssh_host_ed25519_key"
"_netdev"
"reconnect"
"ServerAliveInterval=15"
"x-systemd.automount"
];
};
services.nextcloud = {
enable = true;
package = pkgs.nextcloud28;