From 3af3fcb9d30c3601c1ad81a24937c2c5d4e68c25 Mon Sep 17 00:00:00 2001 From: Laurent Gueret Date: Sat, 11 Jul 2026 22:54:00 +0200 Subject: [PATCH] Delete bluetooth.nix --- modules/system/nixos/networks/bluetooth.nix | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 modules/system/nixos/networks/bluetooth.nix diff --git a/modules/system/nixos/networks/bluetooth.nix b/modules/system/nixos/networks/bluetooth.nix deleted file mode 100644 index d4c4fdb..0000000 --- a/modules/system/nixos/networks/bluetooth.nix +++ /dev/null @@ -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; - - }; -}