17 lines
272 B
Nix
17 lines
272 B
Nix
{ ... }:
|
|
{
|
|
swapDevices = [
|
|
{
|
|
device = "/var/lib/swapfile";
|
|
size = 2 * 1024;
|
|
}
|
|
];
|
|
|
|
custom.nextcloud_domain = "nextcloud.vsinerva.fi";
|
|
|
|
imports = [
|
|
../../shared/base.nix
|
|
../../shared/hardware/vm.nix
|
|
../../servers/nextcloud.nix
|
|
];
|
|
}
|