infra/hosts/web02/default.nix

11 lines
161 B
Nix
Raw Normal View History

2023-07-22 09:50:53 +10:00
{ inputs, ... }:
{
imports = [
./gandi.nix
2023-07-29 15:54:41 +10:00
inputs.self.nixosModules.monitoring
inputs.self.nixosModules.nginx
2023-07-22 09:50:53 +10:00
];
networking.useDHCP = true;
}