Bruno BELANYI
570349e80f
All checks were successful
ci/woodpecker/push/check Pipeline was successful
My profiles are actually just "special" NixOS modules in that they orchestrate settings that usually span the NixOS/home-manager boundary, or otherwise set up configurations from multiple modules at once.
16 lines
289 B
Nix
16 lines
289 B
Nix
{ 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;
|
|
|
|
my.home.bluetooth.enable = true;
|
|
};
|
|
}
|