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