Delete bluetooth.nix

This commit is contained in:
2026-07-11 22:54:00 +02:00
parent 8f0df0f827
commit 3af3fcb9d3
@@ -1,15 +0,0 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.bluetooth;
in
{
options.os.bluetooth = {
enable = mkEnableOption "System networks manager service";
};
config = mkIf cfg.enable {
hardware.bluetooth.enable = true;
};
}