nix-config/home-manager/_mixins/music/default.nix

12 lines
192 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [ alsa-utils ];
services.fluidsynth = {
enable = true;
soundService = "pipewire-pulse";
extraOptions = [
"-g 2"
];
};
}