infra/hosts/web02/configuration.nix

15 lines
282 B
Nix
Raw Normal View History

2023-07-22 09:50:53 +10:00
{ inputs, ... }:
{
imports = [
./gandi.nix
inputs.self.nixosModules.common
2023-07-29 15:54:41 +10:00
inputs.self.nixosModules.monitoring
inputs.srvos.nixosModules.mixins-nginx
2023-08-12 12:40:49 +10:00
inputs.self.nixosModules.cachix-deploy
2023-07-22 09:50:53 +10:00
];
networking.hostName = "web02";
networking.useDHCP = true;
}