1
0
Fork 0
puter/profiles/dynamic/bluetooth.nix

14 lines
148 B
Nix
Raw Normal View History

2025-05-11 22:49:04 +02:00
{
config,
lib,
...
}:
let
2025-07-01 19:02:19 +02:00
cfg = config.profiles.dynamic;
2025-05-11 22:49:04 +02:00
in
{
config = lib.mkIf cfg.enable {
2025-07-01 19:02:19 +02:00
hardware.bluetooth.enable = true;
2025-05-11 22:49:04 +02:00
};
}