infra/hosts/web02/configuration.nix

12 lines
156 B
Nix
Raw Normal View History

2023-07-22 09:50:53 +10:00
{ inputs, ... }:
{
imports = [
./gandi.nix
inputs.self.nixosModules.common
];
networking.hostName = "web02";
networking.useDHCP = true;
}