12 lines
252 B
Nix
12 lines
252 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
let
|
|
moduleName = "nixos-bluetooth";
|
|
in
|
|
{
|
|
hardware.bluetooth.enable = true;
|
|
hardware.bluetooth.powerOnBoot = true;
|
|
services.blueman.enable = true;
|
|
environment.etc."nixlog/loaded.${moduleName}".text = "loaded\n";
|
|
}
|