From d8c7fec4e5b245f7ec94f5d67bfb5b22d35a5bcf Mon Sep 17 00:00:00 2001 From: William Date: Sun, 8 Jun 2025 21:04:34 -0300 Subject: [PATCH] removed referenced to disko file; changed how ports are handled on alexandria services --- hosts/modules/alexandria/services.nix | 4 ++-- hosts/modules/trantor/default.nix | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/hosts/modules/alexandria/services.nix b/hosts/modules/alexandria/services.nix index 24495ac..ff81d85 100644 --- a/hosts/modules/alexandria/services.nix +++ b/hosts/modules/alexandria/services.nix @@ -63,7 +63,7 @@ in DOMAIN = "https://pass.baduhai.dev"; SIGNUPS_ALLOWED = false; ROCKET_ADDRESS = "127.0.0.1"; - ROCKET_PORT = "${config.ports.vaultwarden}"; + ROCKET_PORT = "${ports.vaultwarden}"; }; }; }; @@ -73,7 +73,7 @@ in environment = { TZ = "America/Bahia"; }; - ports = [ "${config.ports.librespeed}:80" ]; + ports = [ "${ports.librespeed}:80" ]; extraOptions = [ "--pull=newer" "--label=io.containers.autoupdate=registry" diff --git a/hosts/modules/trantor/default.nix b/hosts/modules/trantor/default.nix index 9bdb292..39a5b9e 100644 --- a/hosts/modules/trantor/default.nix +++ b/hosts/modules/trantor/default.nix @@ -3,7 +3,6 @@ { imports = [ ./boot.nix - ./disko.nix ./hardware-configuration.nix ./networking.nix ];