mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-07 22:20:33 +02:00
fixed bluetooth related stuff
This commit is contained in:
parent
f4d1078dc8
commit
0771ad93ce
2 changed files with 14 additions and 5 deletions
|
@ -1,7 +1,16 @@
|
|||
{config, pkgs, ...}: {
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
hardware.bluetooth = {
|
||||
enable = true; # enables support for Bluetooth
|
||||
powerOnBoot = true; # powers up the default Bluetooth controller on boot
|
||||
settings = {
|
||||
General = {
|
||||
Enable = "Source,Sink,Media,Socket";
|
||||
Experimental = true;
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
services.blueman.enable = true;
|
||||
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{config, pkgs, ...}:
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue