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

11 lines
193 B
Nix
Raw Normal View History

2023-12-06 14:41:49 +01:00
{pkgs, ...}: {
2019-04-19 03:11:51 +02:00
hardware.bluetooth = {
enable = true;
2023-12-05 19:06:52 +01:00
settings.general = {
enable = "Source,Sink,Media,Socket";
};
2019-04-19 03:11:51 +02:00
};
2025-01-20 13:04:01 +01:00
environment.systemPackages = [ pkgs.bluetuith ];
2019-04-19 03:11:51 +02:00
}