fix: All machine have they own hardware

This commit is contained in:
Wateir 2025-12-22 02:12:52 +01:00
parent 1637885001
commit 4070c37cc5
17 changed files with 286 additions and 103 deletions

View file

@ -1,12 +1,12 @@
{ config, lib, ... }:
lib.mkIf config.sVAULTWARDEN.enable {
lib.mkIf config.module.vaultwarden.enable {
services.vaultwarden = {
enable = true;
config = {
ROCKET_PORT = config.sVAULTWARDEN.internalPort;
ROCKET_PORT = config.module.vaultwarden.internalPort;
ROCKET_ADDRESS = "127.0.0.1";
SIGNUPS_ALLOWED = true;
SIGNUPS_ALLOWED = false;
};
};
}