Files
nixos-config/modules/user/bluetooth/default.nix
2025-03-08 16:24:10 -06:00

18 lines
283 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.userSettings.bluetooth;
in {
options = {
userSettings.bluetooth = {
enable = lib.mkEnableOption "Enable bluetooth";
};
};
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
blueman
];
};
}