6 lines
114 B
Nix
6 lines
114 B
Nix
{ pkgs, ... }: {
|
|
services.blueman.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
blueman
|
|
];
|
|
}
|