mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
19 lines
415 B
Nix
19 lines
415 B
Nix
{ dev ? "armory0" }:
|
|
|
|
{
|
|
services.udev.extraRules = ''
|
|
SUBSYSTEM=="net", ACTION=="add", ATTRS{idVendor}=="0525", ATTRS{idProduct}=="a4a2", NAME="${staticDevName}"
|
|
'';
|
|
|
|
networking = {
|
|
interfaces."${staticDevName}".ip4 = [{
|
|
address = "10.0.0.2";
|
|
prefixLength = 24;
|
|
}];
|
|
nat = {
|
|
enable = true;
|
|
internalInterfaces = [ dev ];
|
|
};
|
|
extraHosts = "10.0.0.1 armory";
|
|
};
|
|
}
|