infra/hosts/web02/configuration.nix
2023-07-29 22:29:37 +00:00

11 lines
156 B
Nix

{ inputs, ... }:
{
imports = [
./gandi.nix
inputs.self.nixosModules.common
];
networking.hostName = "web02";
networking.useDHCP = true;
}