diff --git a/nixos/dustbowl.nix b/nixos/dustbowl.nix index 54d1a8c..fd41d21 100644 --- a/nixos/dustbowl.nix +++ b/nixos/dustbowl.nix @@ -156,7 +156,6 @@ yubico-pam nmap bind.dnsutils - openrgb gdb intel-gpu-tools config.boot.kernelPackages.perf @@ -192,6 +191,7 @@ libreoffice okular ungoogled-chromium + openrgb ]; # Use doas instead of sudo @@ -296,12 +296,12 @@ sound.enable = true; # Bluetooth - hardware.bluetooth.enable = true; - - # Enable experimental features in bluetoothd with -E flag - systemd.services.bluetooth.serviceConfig.ExecStart = - let args = [ "-f" "/etc/bluetooth/main.conf" "-E" ]; - in lib.mkForce [ "" "${config.hardware.bluetooth.package}/libexec/bluetooth/bluetoothd ${lib.escapeShellArgs args}" ]; + hardware.bluetooth = { + enable = true; + settings = { + General.Experimental = true; + }; + }; # UPower services.upower.enable = true;