1
0
Fork 0
puter/profiles/dynamic/bluetooth.nix
2025-07-01 19:02:19 +02:00

13 lines
148 B
Nix

{
config,
lib,
...
}:
let
cfg = config.profiles.dynamic;
in
{
config = lib.mkIf cfg.enable {
hardware.bluetooth.enable = true;
};
}