removed referenced to disko file; changed how ports are handled on alexandria services

This commit is contained in:
William 2025-06-08 21:04:34 -03:00
parent 968f285814
commit d8c7fec4e5
2 changed files with 2 additions and 3 deletions

View file

@ -63,7 +63,7 @@ in
DOMAIN = "https://pass.baduhai.dev"; DOMAIN = "https://pass.baduhai.dev";
SIGNUPS_ALLOWED = false; SIGNUPS_ALLOWED = false;
ROCKET_ADDRESS = "127.0.0.1"; ROCKET_ADDRESS = "127.0.0.1";
ROCKET_PORT = "${config.ports.vaultwarden}"; ROCKET_PORT = "${ports.vaultwarden}";
}; };
}; };
}; };
@ -73,7 +73,7 @@ in
environment = { environment = {
TZ = "America/Bahia"; TZ = "America/Bahia";
}; };
ports = [ "${config.ports.librespeed}:80" ]; ports = [ "${ports.librespeed}:80" ];
extraOptions = [ extraOptions = [
"--pull=newer" "--pull=newer"
"--label=io.containers.autoupdate=registry" "--label=io.containers.autoupdate=registry"

View file

@ -3,7 +3,6 @@
{ {
imports = [ imports = [
./boot.nix ./boot.nix
./disko.nix
./hardware-configuration.nix ./hardware-configuration.nix
./networking.nix ./networking.nix
]; ];