nixos-conf/machine-confs/nextcloud.nix

14 lines
227 B
Nix
Raw Normal View History

{ ... }:
2024-05-29 17:44:21 +03:00
{
2024-06-02 05:53:39 +03:00
networking.hostName = "nextcloud";
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 = [
../base.nix
2025-05-29 02:12:20 +03:00
../servers/nextcloud.nix
2024-06-02 05:53:39 +03:00
];
2024-05-29 17:44:21 +03:00
2024-06-02 16:18:19 +03:00
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
2024-05-29 17:44:21 +03:00
}