5 lines
124 B
Nix
5 lines
124 B
Nix
{ nixosConfig, lib, pkgs, ... }:
|
|
|
|
lib.mkIf nixosConfig.jalr.bluetooth.enable {
|
|
home.packages = [ pkgs.wofi-bluetooth ];
|
|
}
|