blob: 7043cc34b5fc09a97f78afb232fe20bc9b4c79cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{
lib,
config,
...
}: let
inherit (lib) mkIf;
in {
config = mkIf config.bluetooth {
hardware.bluetooth.enable = true;
services.blueman.enable = true;
users.groups.bluetooth.members = [config.user];
};
}
|