infra/hosts/web02/configuration.nix

17 lines
318 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-07-22 09:50:53 +10:00
];
networking.hostName = "web02";
networking.useDHCP = true;
2023-08-18 00:11:18 +10:00
# enabled by default for stateVersion < 23.11
boot.swraid.enable = false;
2023-07-22 09:50:53 +10:00
}