mirror of
https://github.com/ItsDrike/nixdots
synced 2025-01-24 03:24:34 +00:00
Compare commits
1 commit
6da71787f1
...
e84f91507a
Author | SHA1 | Date | |
---|---|---|---|
ItsDrike | e84f91507a |
32
system/shared/bluetooth.nix
Normal file
32
system/shared/bluetooth.nix
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
inherit (lib) mkIf;
|
||||||
|
|
||||||
|
sys = config.myOptions.system.bluetooth;
|
||||||
|
in {
|
||||||
|
config = mkIf sys.enable {
|
||||||
|
modules.system.boot.extraKernelParams = ["btusb"];
|
||||||
|
|
||||||
|
hardware.bluetooth = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.bluez5-experimental;
|
||||||
|
#hsphfpd.enable = true;
|
||||||
|
powerOnBoot = true;
|
||||||
|
disabledPlugins = ["sap"];
|
||||||
|
settings = {
|
||||||
|
General = {
|
||||||
|
JustWorksRepairing = "always";
|
||||||
|
MultiProfile = "multiple";
|
||||||
|
Experimental = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# https://nixos.wiki/wiki/Bluetooth
|
||||||
|
services.blueman.enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -11,6 +11,7 @@ _: {
|
||||||
./programs.nix
|
./programs.nix
|
||||||
./system.nix
|
./system.nix
|
||||||
./network.nix
|
./network.nix
|
||||||
|
./bluetooth.nix
|
||||||
./localisation.nix
|
./localisation.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue