nixos-conf/machine-confs/dhcp-cluster-node.nix

10 lines
161 B
Nix
Raw Normal View History

2024-12-09 14:02:21 +02:00
{ config, pkgs, ... }:
{
networking.hostName = "dhcp-cluster-node";
imports = [ ../base.nix ];
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
}