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

17 lines
278 B
Nix
Raw Normal View History

2019-04-19 03:11:51 +02:00
{ pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
extraConfig = ''
[General]
Enable=Source,Sink,Media,Socket
'';
};
environment.systemPackages = [ pkgs.blueman ];
2019-04-20 09:08:39 +02:00
home-manager.users.me = {
services.blueman-applet.enable = true;
};
2019-04-19 03:11:51 +02:00
}