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";
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"

View file

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