Move nextcloud to large storage
This commit is contained in:
parent
08f493321c
commit
eeba455caa
2 changed files with 18 additions and 6 deletions
|
@ -28,12 +28,20 @@
|
||||||
};
|
};
|
||||||
nix.enableDirenv = false;
|
nix.enableDirenv = false;
|
||||||
zfs = {
|
zfs = {
|
||||||
backups = [{
|
backups = [
|
||||||
|
{
|
||||||
path = "zroot/safe/data";
|
path = "zroot/safe/data";
|
||||||
remotePath = "zdata/recv/lasting-integrity/safe/data";
|
remotePath = "zdata/recv/lasting-integrity/safe/data";
|
||||||
fast = true;
|
fast = true;
|
||||||
location = "192.168.0.1";
|
location = "192.168.0.1";
|
||||||
}];
|
}
|
||||||
|
{
|
||||||
|
path = "zdata/big-apps/nextcloud";
|
||||||
|
remotePath = "zdata/recv/lasting-integrity/big-apps/nextcloud";
|
||||||
|
fast = true;
|
||||||
|
location = "192.168.0.1";
|
||||||
|
}
|
||||||
|
];
|
||||||
rootDataset = "zroot/local/root";
|
rootDataset = "zroot/local/root";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -42,6 +42,10 @@
|
||||||
fsType = "zfs";
|
fsType = "zfs";
|
||||||
neededForBoot = true;
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
|
"/data/var/lib/nextcloud" = {
|
||||||
|
device = "zdata/big-apps/nextcloud";
|
||||||
|
fsType = "zfs";
|
||||||
|
};
|
||||||
"/cache" = {
|
"/cache" = {
|
||||||
device = "zroot/safe/cache";
|
device = "zroot/safe/cache";
|
||||||
fsType = "zfs";
|
fsType = "zfs";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue