From 9a8557c39a0cce7e58419047cd3efad1e3522b7c Mon Sep 17 00:00:00 2001 From: Satria Date: Fri, 6 Mar 2026 21:06:47 +0700 Subject: [PATCH] use omv for shares --- modules/hardware/misc/disks.nix | 6 +++--- modules/system/homelab/proxy.nix | 1 - modules/system/server.nix | 3 ++- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/hardware/misc/disks.nix b/modules/hardware/misc/disks.nix index 4bdff01..2081427 100644 --- a/modules/hardware/misc/disks.nix +++ b/modules/hardware/misc/disks.nix @@ -6,9 +6,9 @@ }; in { fileSystems = { - "/mnt/share" = globalOpts // { - device = homelab.disks.share; - }; + # "/mnt/share" = globalOpts // { + # device = homelab.disks.share; + # }; "/mnt/data" = globalOpts // { device = homelab.disks.data; }; diff --git a/modules/system/homelab/proxy.nix b/modules/system/homelab/proxy.nix index 909887d..60c16cc 100644 --- a/modules/system/homelab/proxy.nix +++ b/modules/system/homelab/proxy.nix @@ -7,7 +7,6 @@ "containers" = { dest = "http://localhost:5001"; auth = false; }; "remote" = { dest = "http://localhost:8085"; auth = false; }; "pass" = { dest = "http://localhost:8060"; auth = false; }; - "cdn" = { dest = "http://localhost:3000"; auth = false; }; "gallery" = { dest = "http://localhost:2283"; auth = false; }; "media" = { dest = "http://localhost:8096"; auth = false; }; diff --git a/modules/system/server.nix b/modules/system/server.nix index a058067..6ab20b8 100644 --- a/modules/system/server.nix +++ b/modules/system/server.nix @@ -6,12 +6,13 @@ ]; in { imports = [ + # ./homelab/share.nix # gonna use omv for now + ./homelab/containers.nix ./homelab/gallery.nix ./homelab/tunnels.nix ./homelab/remote.nix ./homelab/media.nix - ./homelab/share.nix ./homelab/proxy.nix ./homelab/auth.nix ./homelab/pass.nix