Update dhcp cluster node conf
This commit is contained in:
parent
d03021321d
commit
b3c6c8c48d
2 changed files with 15 additions and 1 deletions
|
@ -1,9 +1,14 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
networking.hostName = "dhcp-cluster-node";
|
networking.hostName = "dhcp1";
|
||||||
|
|
||||||
imports = [ ../base.nix ];
|
imports = [ ../base.nix ];
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
rustc
|
||||||
|
cargo
|
||||||
|
];
|
||||||
|
|
||||||
# HARDWARE SPECIFIC
|
# HARDWARE SPECIFIC
|
||||||
services.qemuGuest.enable = true;
|
services.qemuGuest.enable = true;
|
||||||
}
|
}
|
9
machine-confs/dhcp2.nix
Normal file
9
machine-confs/dhcp2.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
networking.hostName = pkgs.lib.mkForce "dhcp2";
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
../base.nix
|
||||||
|
./dhcp1.nix
|
||||||
|
];
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue