diff options
author | Soispha <soispha@vhack.eu> | 2023-07-29 13:59:55 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-07-29 13:59:55 +0200 |
commit | 12f072b749f978234e360b89d5e2fda9424c11be (patch) | |
tree | 9f3532e755fe720a7aabf06ae8dd4d2396999415 /hosts/isimud/networking.nix | |
parent | Fix(hm/conf/gpg): Make the keys mutable (diff) | |
download | nixos-config-12f072b749f978234e360b89d5e2fda9424c11be.tar.gz nixos-config-12f072b749f978234e360b89d5e2fda9424c11be.zip |
Feat(host/isimud): Add host isimud for gpg-iso
Diffstat (limited to 'hosts/isimud/networking.nix')
-rw-r--r-- | hosts/isimud/networking.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/hosts/isimud/networking.nix b/hosts/isimud/networking.nix new file mode 100644 index 00000000..3dfd7e84 --- /dev/null +++ b/hosts/isimud/networking.nix @@ -0,0 +1,11 @@ +{ + lib, + ... +}: { + # Disable networking + networking.useDHCP = lib.mkForce false; + networking.interfaces = lib.mkForce {}; + boot.blacklistedKernelModules = ["igb" "iwlwifi" "rtw89"]; + + networking.hostName = "isimud"; +} |