From 1b30a0dcf4cd4e3326aa8f5f3fe0010933d07b30 Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Tue, 15 Mar 2022 16:32:47 -0400 Subject: [PATCH] Disable wifi and enable bluetooth usb --- nki-home/configuration.nix | 2 +- nki-home/hardware-configuration.nix | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/nki-home/configuration.nix b/nki-home/configuration.nix index 1d0bfe5..c2baca5 100644 --- a/nki-home/configuration.nix +++ b/nki-home/configuration.nix @@ -50,7 +50,7 @@ # replicates the default behaviour. networking.useDHCP = false; networking.interfaces.enp8s0.useDHCP = true; - networking.interfaces.wlp7s0.useDHCP = true; + # networking.interfaces.wlp7s0.useDHCP = true; # Configure network proxy if necessary # networking.proxy.default = "http://user:password@proxy:port/"; diff --git a/nki-home/hardware-configuration.nix b/nki-home/hardware-configuration.nix index 1441829..68fbb85 100644 --- a/nki-home/hardware-configuration.nix +++ b/nki-home/hardware-configuration.nix @@ -35,4 +35,7 @@ # GPU options services.xserver.videoDrivers = [ "amdgpu" ]; hardware.opengl.enable = true; + + # bluetooth usb + hardware.firmware = [ pkgs.unfree.rtl8761b-firmware ]; }