nixos-conf/machine-confs/dhcp2.nix

10 lines
129 B
Nix
Raw Normal View History

2024-12-09 17:39:28 +02:00
{ config, pkgs, ... }:
{
networking.hostName = pkgs.lib.mkForce "dhcp2";
imports = [
../base.nix
./dhcp1.nix
];
}