mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 00:57:22 +01:00
8 lines
249 B
Nix
8 lines
249 B
Nix
{ lib, config, ... }:
|
|
{
|
|
options.swarselsystems.modules.blueman = lib.mkEnableOption "blueman config";
|
|
config = lib.mkIf config.swarselsystems.modules.blueman {
|
|
services.blueman.enable = true;
|
|
services.hardware.bolt.enable = true;
|
|
};
|
|
}
|