diff options
author | sinanmohd <sinan@sinanmohd.com> | 2025-03-10 23:06:20 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2025-03-10 23:06:20 +0530 |
commit | 1b39ffd12dcb24142327a2bd62c1587599915980 (patch) | |
tree | 8d36eb397ca9a8e92a58352bfd83b1fcc3f80ec8 | |
parent | 16269416193b9e41417a27ecb9ef057e22691a5a (diff) |
kay/hardware: enable bluetooth
-rw-r--r-- | os/cez/hardware-configuration.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/os/cez/hardware-configuration.nix b/os/cez/hardware-configuration.nix index 804ac8d..f1d5f32 100644 --- a/os/cez/hardware-configuration.nix +++ b/os/cez/hardware-configuration.nix @@ -6,8 +6,11 @@ (modulesPath + "/installer/scan/not-detected.nix") ]; - # override nixos-hardware values - hardware.nvidia.prime.offload.enable = false; + hardware = { + # override nixos-hardware values + nvidia.prime.offload.enable = false; + bluetooth.enable = true; + }; services.xserver.videoDrivers = [ "modesetting" ]; swapDevices = [{ |