ninurta: disable stage1 systemd

This commit is contained in:
Tim Schubert 2023-06-04 01:41:33 +02:00
parent 26463da687
commit 4614971ab3
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA

View file

@ -33,6 +33,7 @@ in
message = "Refusing to store private keys in store"; message = "Refusing to store private keys in store";
}; };
boot.kernelParams = [ "ip=dhcp" ];
boot.initrd = { boot.initrd = {
network = { network = {
enable = true; enable = true;
@ -44,25 +45,26 @@ in
hostKeys = [ initrdPrivateKey ]; hostKeys = [ initrdPrivateKey ];
}; };
}; };
systemd = { # Kinda does not work?
enable = true; # systemd = {
network = { # enable = true;
enable = true; # network = {
links = { # enable = true;
"10-lan" = { # links = {
matchConfig.Name = "e*"; # "10-lan" = {
linkConfig.MACAddressPolicy = "persistent"; # matchConfig.Name = "e*";
}; # linkConfig.MACAddressPolicy = "persistent";
}; # };
networks = { # };
"10-lan" = { # networks = {
matchConfig.Name = "e*"; # "10-lan" = {
networkConfig.DHCP = "ipv4"; # matchConfig.Name = "e*";
linkConfig.RequiredForOnline = "routable"; # networkConfig.DHCP = "ipv4";
}; # linkConfig.RequiredForOnline = "routable";
}; # };
}; # };
}; # };
# };
}; };
fileSystems."/mnt/storage" = { fileSystems."/mnt/storage" = {