infra/hosts/web02/default.nix

12 lines
182 B
Nix
Raw Permalink Normal View History

2023-07-22 09:50:53 +10:00
{ inputs, ... }:
{
imports = [
./gandi.nix
2023-09-24 14:36:44 +10:00
./postgresql.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;
}