11 lines
128 B
Nix
11 lines
128 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
hardware.bluetooth = {
|
|
enable = true;
|
|
powerOnBoot = true;
|
|
};
|
|
|
|
services.blueman.enable = true;
|
|
}
|