nixos-configuration/home-manager/modules/sway/wofi-bluetooth.nix
2023-11-08 23:45:08 +00:00

5 lines
124 B
Nix

{ nixosConfig, lib, pkgs, ... }:
lib.mkIf nixosConfig.jalr.bluetooth.enable {
home.packages = [ pkgs.wofi-bluetooth ];
}