diff options
author | makefu <github@syntax-fehler.de> | 2019-09-25 15:12:09 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2019-09-25 15:12:09 +0200 |
commit | 2a16ceb4c2d3b91c8cd802cd186053c9b4c1687f (patch) | |
tree | 36612ed33a4de04068ccfc10e8944a37538f9b03 | |
parent | a80f207cb853237503ca988c0ecd6174d5331b43 (diff) |
ma wbob.r: disable wifi again
-rw-r--r-- | makefu/1systems/wbob/config.nix | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/makefu/1systems/wbob/config.nix b/makefu/1systems/wbob/config.nix index ad7fc825c..7002b1002 100644 --- a/makefu/1systems/wbob/config.nix +++ b/makefu/1systems/wbob/config.nix @@ -47,6 +47,7 @@ in { <stockholm/makefu/2configs/bureautomation> # new hass entry point <stockholm/makefu/2configs/bureautomation/led-fader.nix> + <stockholm/makefu/2configs/bureautomation/visitor-photostore.nix> # <stockholm/makefu/2configs/bureautomation/mpd.nix> #mpd is only used for TTS <stockholm/makefu/2configs/mqtt.nix> (let @@ -146,10 +147,8 @@ in { # rt2870.bin wifi card, part of linux-unfree hardware.enableAllFirmware = true; nixpkgs.config.allowUnfree = true; - networking.wireless.enable = true; # rt2870 with nonfree creates wlp2s0 from wlp0s20u2 # not explicitly setting the interface results in wpa_supplicant to crash - networking.wireless.interfaces = [ "wlp2s0" ]; networking.interfaces.virbr1.ipv4.addresses = [{ address = "10.8.8.11"; prefixLength = 24; @@ -161,8 +160,8 @@ in { hardware.cpu.intel.updateMicrocode = true; boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ]; - boot.kernelModules = [ "kvm-intel" - "snd-seq" "snd-rawmidi" + boot.kernelModules = [ + "kvm-intel" "snd-seq" "snd-rawmidi" ]; fileSystems = { "/" = { |