Merge pull request #526 from genebean/bluetooth

Enable bluetooth bits in KDE
This commit is contained in:
Gene Liverman 2025-07-06 15:34:27 -04:00 committed by GitHub
commit 5d90905e85
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View file

@ -37,6 +37,8 @@
hubble hubble
hugo hugo
inputs.flox.packages.${pkgs.system}.default inputs.flox.packages.${pkgs.system}.default
kdePackages.bluedevil
kdePackages.bluez-qt
kdePackages.kdenlive kdePackages.kdenlive
kubectl kubectl
kubectx kubectx

View file

@ -42,4 +42,5 @@
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
hardware.bluetooth.enable = true;
} }