11 lines
156 B
Nix
11 lines
156 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
./gandi.nix
|
|
inputs.self.nixosModules.common
|
|
];
|
|
|
|
networking.hostName = "web02";
|
|
|
|
networking.useDHCP = true;
|
|
}
|