16 lines
318 B
Nix
16 lines
318 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
./gandi.nix
|
|
inputs.self.nixosModules.common
|
|
inputs.self.nixosModules.monitoring
|
|
inputs.srvos.nixosModules.mixins-nginx
|
|
];
|
|
|
|
networking.hostName = "web02";
|
|
|
|
networking.useDHCP = true;
|
|
|
|
# enabled by default for stateVersion < 23.11
|
|
boot.swraid.enable = false;
|
|
}
|