1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/configs/bluetooth.nix
Kierán Meinhardt a763c63de4 modularize
2019-04-19 03:11:51 +02:00

13 lines
201 B
Nix

{ pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
extraConfig = ''
[General]
Enable=Source,Sink,Media,Socket
'';
};
environment.systemPackages = [ pkgs.blueman ];
}