nixos-conf/hosts/nextcloud/configuration.nix

18 lines
272 B
Nix
Raw Normal View History

{ ... }:
2024-05-29 17:44:21 +03:00
{
2025-06-30 01:56:57 +03:00
swapDevices = [
{
device = "/var/lib/swapfile";
size = 2 * 1024;
}
];
2025-04-01 00:39:43 +03:00
custom.nextcloud_domain = "nextcloud.vsinerva.fi";
2024-05-29 17:44:21 +03:00
2024-06-02 05:53:39 +03:00
imports = [
../../shared/base.nix
2025-06-05 00:21:11 +03:00
../../shared/hardware/vm.nix
../../servers/nextcloud.nix
2024-06-02 05:53:39 +03:00
];
2024-05-29 17:44:21 +03:00
}