fix(io): improve bluetooth/audio defaults

This commit is contained in:
514fpv 2024-01-13 19:38:39 +08:00
parent a14b0002bb
commit 6dc0cc7a6b
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

View file

@ -3,11 +3,12 @@
, config
, ... }: with lib; let
cfg = config.global.io;
gui = with config.global.gui; enable && session;
in {
options.global.io = {
betaflight = mkEnableOption "betaflight udev rules" // { default = true; };
bluetooth = mkEnableOption "bluetooth daemons and state persistence" // { default = true; };
audio = mkEnableOption "pulseaudio server configuration" // { default = true; };
bluetooth = mkEnableOption "bluetooth daemons and state persistence" // { default = gui; };
audio = mkEnableOption "pulseaudio server configuration" // { default = gui; };
coredump = mkEnableOption "save coredumps handled by systemd";
};