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

12 lines
195 B
Nix
Raw Normal View History

2025-12-27 22:22:54 +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
}