Files
nixos/devices/srv2/node1/default.nix
2025-07-03 12:16:15 +08:00

24 lines
465 B
Nix

inputs:
{
config =
{
nixos =
{
model.cluster.nodeType = "master";
system =
{
nixpkgs.march = "znver3";
network =
{
static.enp58s0 = { ip = "192.168.178.2"; mask = 24; };
trust = [ "enp58s0" ];
wireless = [ "4575G" ];
masquerade = [ "enp58s0" ];
};
};
services.beesd."/".hashTableSizeMB = 64;
};
services.hardware.bolt.enable = true;
};
}