aboutsummaryrefslogtreecommitdiffstats
path: root/modules/nixos/sils/bluetooth.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/nixos/sils/bluetooth.nix')
-rw-r--r--modules/nixos/sils/bluetooth.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/modules/nixos/sils/bluetooth.nix b/modules/nixos/sils/bluetooth.nix
deleted file mode 100644
index 2d67717..0000000
--- a/modules/nixos/sils/bluetooth.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- config,
- lib,
- ...
-}: let
- cfg = config.sils.bluetooth;
-in {
- options.sils.bluetooth.enable = lib.mkEnableOption "bluetooth";
- config = lib.mkIf cfg.enable {
- hardware.bluetooth.enable = true;
- };
-}