11 lines
225 B
Nix
11 lines
225 B
Nix
{ ... }:
|
|
{
|
|
fileSystems."/var/lib/nextcloud/data" = {
|
|
device = "/dev/vdb";
|
|
fsType = "ext4";
|
|
autoFormat = true;
|
|
autoResize = true;
|
|
options = [ "X-mount.owner=nextcloud" "X-mount.group=nextcloud" ];
|
|
};
|
|
}
|