Refactor modules style

This commit is contained in:
Julia Lange 2024-04-07 17:08:48 -07:00
parent 13a4fa146f
commit 30810224f0
44 changed files with 455 additions and 297 deletions

View file

@ -0,0 +1,16 @@
{ config, pkgs, lib, ... }:
{
options = {
bluetooth.enable = lib.mkEnableOption "Enables Bluetooth with blueman";
};
config = lib.mkIf config.bluetooth.enable {
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
services.blueman.enable = true;
environment.systemPackages = with pkgs; [
blueman
];
};
}