diff options
author | Franck Cuny <franck@fcuny.net> | 2022-05-12 13:39:52 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-05-12 13:39:52 -0700 |
commit | 7ebc556663c2dd462bd1fb4aa3226ec6fcbe23b6 (patch) | |
tree | a802b198dc175aaa812f2327720b7f3fb4f0f451 /profiles/bluetooth | |
parent | docs: some documentation (diff) | |
download | world-7ebc556663c2dd462bd1fb4aa3226ec6fcbe23b6.tar.gz |
add modules to manage bluetooth
Diffstat (limited to 'profiles/bluetooth')
-rw-r--r-- | profiles/bluetooth/default.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/profiles/bluetooth/default.nix b/profiles/bluetooth/default.nix new file mode 100644 index 0000000..ffd05b4 --- /dev/null +++ b/profiles/bluetooth/default.nix @@ -0,0 +1,9 @@ +{ config, lib, ... }: +let cfg = config.my.profiles.bluetooth; +in { + options.my.profiles.bluetooth = with lib; { + enable = mkEnableOption "bluetooth profile"; + }; + + config = lib.mkIf cfg.enable { my.hardware.bluetooth.enable = true; }; +} |