1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-27 18:17:44 +00:00

feat: add blueman module

This commit is contained in:
RGBCube 2025-02-23 21:04:51 +03:00
parent 6de99d2a8d
commit b5050ef7a7

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;
};
}