refactor(emacs): Simpler architecture for msyds emacs

This commit is contained in:
2025-08-11 16:20:25 -06:00
parent aad37f62a3
commit ce288fdbd9
43 changed files with 1016 additions and 382 deletions

View File

@@ -0,0 +1,23 @@
{ config, lib, pkgs, ... }:
let cfg = config.sydnix.bluetooth;
in {
options.sydnix.bluetooth = {
enable = lib.mkEnableOption "BlueTooth";
};
config = lib.mkIf cfg.enable {
services.blueman.enable = true;
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
# Show battery charge of Bluetooth devices
Experimental = true;
};
};
};
};
}