13 lines
145 B
Nix
13 lines
145 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
in {
|
|
environment.systemPackages = with pkgs; lib.mkMerge [
|
|
(mkIf cfg.bluetooth.enable [
|
|
|
|
])
|
|
];
|
|
}
|