mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
11 lines
193 B
Nix
11 lines
193 B
Nix
{pkgs, ...}: {
|
|
hardware.bluetooth = {
|
|
enable = true;
|
|
settings.general = {
|
|
enable = "Source,Sink,Media,Socket";
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.bluetuith ];
|
|
}
|