about summary refs log tree commit diff stats
path: root/hosts/isimud/networking.nix
blob: 58c84ee561870080e65828e89b220a7557241ed2 (plain) (blame)
1
2
3
4
5
6
7
8
{lib, ...}: {
  # Disable networking
  networking.useDHCP = lib.mkForce false;
  networking.interfaces = lib.mkForce {};
  boot.blacklistedKernelModules = ["igb" "iwlwifi" "rtw89"];

  networking.hostName = "isimud";
}