Update dhcp cluster node conf

This commit is contained in:
Vili Sinervä 2024-12-09 17:39:28 +02:00
parent d03021321d
commit b3c6c8c48d
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996
2 changed files with 15 additions and 1 deletions

View file

@ -1,9 +1,14 @@
{ config, pkgs, ... }:
{
networking.hostName = "dhcp-cluster-node";
networking.hostName = "dhcp1";
imports = [ ../base.nix ];
environment.systemPackages = with pkgs; [
rustc
cargo
];
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
}

9
machine-confs/dhcp2.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
networking.hostName = pkgs.lib.mkForce "dhcp2";
imports = [
../base.nix
./dhcp1.nix
];
}