Add a nextcloud hostName
diff --git a/src/apps/system/nextcloud.nix b/src/apps/system/nextcloud.nix
index e973545..01daa48 100644
--- a/src/apps/system/nextcloud.nix
+++ b/src/apps/system/nextcloud.nix
@@ -1,3 +1,10 @@
 { pkgs, ... }: {
-    services.nextcloud.enable = true;
+    services.nextcloud = {
+        enable = true;
+        hostName = "nextcloud.python.local";
+    };
+
+    networking.hosts = {
+        "127.0.0.1" = [ "nextcloud.python.local" ];
+    };
 }