diff options
| author | Franck Cuny <franck@fcuny.net> | 2022-05-16 17:45:20 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-05-16 17:45:20 -0700 |
| commit | 9d72ffae25122617f9b0faec214360f91af39a57 (patch) | |
| tree | 886e418b529091bc84e83d97b17d842733050775 /home/bluetooth/default.nix | |
| parent | alacritty: better colors (diff) | |
| download | infra-9d72ffae25122617f9b0faec214360f91af39a57.tar.gz | |
bluetooh: enable on aptos
Diffstat (limited to 'home/bluetooth/default.nix')
| -rw-r--r-- | home/bluetooth/default.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/home/bluetooth/default.nix b/home/bluetooth/default.nix new file mode 100644 index 0000000..51ecc4a --- /dev/null +++ b/home/bluetooth/default.nix @@ -0,0 +1,10 @@ +{ config, lib, ... }: +let cfg = config.my.home.bluetooth; +in { + options.my.home.bluetooth = with lib; { + enable = mkEnableOption "bluetooth configuration"; + }; + + config = + lib.mkIf cfg.enable { services.blueman-applet = { enable = true; }; }; +} |
