1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/configs/bluetooth.nix

18 lines
330 B
Nix
Raw Permalink Normal View History

2022-03-10 21:52:12 +01:00
{
pkgs,
lib,
...
}: {
2019-04-19 03:11:51 +02:00
hardware.bluetooth = {
enable = true;
2021-06-01 19:14:00 +02:00
settings.General.Enable =
2022-03-10 21:52:12 +01:00
lib.concatStringsSep "," ["Source" "Sink" "Media" "Socket"];
2019-04-19 03:11:51 +02:00
};
2022-08-10 21:07:39 +02:00
services.blueman.enable = true;
2019-04-20 09:08:39 +02:00
2022-08-10 21:07:39 +02:00
# environment.systemPackages = [pkgs.blueman];
home-manager.users.me = {services.blueman-applet.enable = true;};
2019-04-19 03:11:51 +02:00
}