blob: 3dfd7e8440d643a66ecf4c7908f6d75d04a1a996 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
{
lib,
...
}: {
# Disable networking
networking.useDHCP = lib.mkForce false;
networking.interfaces = lib.mkForce {};
boot.blacklistedKernelModules = ["igb" "iwlwifi" "rtw89"];
networking.hostName = "isimud";
}
|