From 079a923192ef02fd4db12be95a44226c35edc768 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vili=20Sinerv=C3=A4?= Date: Mon, 7 Apr 2025 01:16:03 +0300 Subject: [PATCH] Add initial config for Idacloud --- machine-confs/idacloud.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 machine-confs/idacloud.nix diff --git a/machine-confs/idacloud.nix b/machine-confs/idacloud.nix new file mode 100644 index 0000000..8bd5962 --- /dev/null +++ b/machine-confs/idacloud.nix @@ -0,0 +1,13 @@ +{ ... }: +{ + networking.hostName = "idacloud"; + custom.nextcloud_domain = "idacloud.sinerva.eu"; + + imports = [ + ../base.nix + ../services/nextcloud.nix + ]; + + # HARDWARE SPECIFIC + services.qemuGuest.enable = true; +}