infra/hosts/web02/default.nix
2024-11-18 00:36:31 +00:00

11 lines
182 B
Nix

{ inputs, ... }:
{
imports = [
./gandi.nix
./postgresql.nix
inputs.self.nixosModules.monitoring
inputs.self.nixosModules.nginx
];
networking.useDHCP = true;
}