mirror of
https://github.com/Superredstone/nixos.git
synced 2026-06-17 15:24:39 +02:00
12 lines
190 B
Nix
12 lines
190 B
Nix
{ ... }:
|
|
{
|
|
services.vaultwarden = {
|
|
enable = true;
|
|
domain = "vaultwarden.patrickcanal.it";
|
|
config = {
|
|
ROCKET_ADDRESS = "0.0.0.0";
|
|
ROCKET_PORT = 8003;
|
|
};
|
|
};
|
|
}
|