1
0
mirror of https://github.com/kmein/niveum synced 2026-03-17 02:31:09 +01:00
Files
niveum/configs/bluetooth.nix

16 lines
336 B
Nix
Raw Normal View History

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