mirror of
https://github.com/Smaug123/PulumiConfig
synced 2025-10-05 08:38:41 +00:00
22 lines
494 B
Nix
22 lines
494 B
Nix
{lib, ...}: {
|
|
# This file was populated at runtime with the networking
|
|
# details gathered from the active system.
|
|
networking = {
|
|
nameservers = [];
|
|
defaultGateway = "";
|
|
defaultGateway6 = "";
|
|
dhcpcd.enable = false;
|
|
usePredictableInterfaceNames = lib.mkForce false;
|
|
interfaces = {
|
|
eth0 = {
|
|
ipv4.addresses = [];
|
|
ipv6.addresses = [];
|
|
ipv4.routes = [];
|
|
ipv6.routes = [];
|
|
};
|
|
};
|
|
};
|
|
services.udev.extraRules = ''
|
|
'';
|
|
}
|