This commit is contained in:
parent
2c9c995c51
commit
d713299ed8
2 changed files with 11 additions and 8 deletions
|
@ -97,12 +97,15 @@
|
||||||
{config, ...}: {
|
{config, ...}: {
|
||||||
networking.resolvconf.enable = false;
|
networking.resolvconf.enable = false;
|
||||||
networking = {
|
networking = {
|
||||||
interfaces.eth0.ipv4.addresses = [
|
interfaces.eth0 = {
|
||||||
|
wakeOnLan.enable = true;
|
||||||
|
ipv4.addresses = [
|
||||||
{
|
{
|
||||||
address = "192.168.88.225";
|
address = "192.168.88.225";
|
||||||
prefixLength = 24;
|
prefixLength = 24;
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
};
|
||||||
defaultGateway = {
|
defaultGateway = {
|
||||||
address = "192.168.88.1";
|
address = "192.168.88.1";
|
||||||
interface = "eth0";
|
interface = "eth0";
|
||||||
|
|
Loading…
Reference in a new issue