1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 19:17:45 +00:00

feat: add blueman module

This commit is contained in:
RGBCube 2025-02-23 21:04:51 +03:00
parent 7d3356e27a
commit e2d6f92969
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M

View file

@ -0,0 +1,9 @@
{ config, lib, ... }: let
inherit (lib) enabled merge mkIf;
in merge <| mkIf config.isDesktop {
services.blueman = enabled;
hardware.bluetooth = enabled {
powerOnBoot = true;
};
}