9 lines
161 B
Nix
9 lines
161 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
networking.hostName = "dhcp-cluster-node";
|
|
|
|
imports = [ ../base.nix ];
|
|
|
|
# HARDWARE SPECIFIC
|
|
services.qemuGuest.enable = true;
|
|
}
|