Nettoyage et mise à jour

This commit is contained in:
2026-07-11 22:46:51 +02:00
parent bbbf69e9e9
commit 8f0df0f827
12 changed files with 337 additions and 145 deletions
@@ -0,0 +1,15 @@
{ 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;
};
}