1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 13:03:33 +02:00
home-manager/modules/services/fluidsynth.nix
Robert Helgesson 5f433eb164
Move platform check into modules
Before, loading a module would be guarded by an optional platform
condition. This made it possible to avoid loading and evaluating a
module if it did not support the host platform.

Unfortunately, this made it impossible to share a single configuration
between GNU/Linux and Darwin hosts, which some wish to do.

This removes the conditional load and instead inserts host platform
assertions in the modules that are platform specific.

Fixes #1906
2021-07-18 20:43:22 +02:00

63 lines
1.5 KiB
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.fluidsynth;
in {
meta.maintainers = [ maintainers.valodim ];
options = {
services.fluidsynth = {
enable = mkEnableOption "fluidsynth midi synthesizer";
soundFont = mkOption {
type = types.path;
default = "${pkgs.soundfont-fluid}/share/soundfonts/FluidR3_GM2-2.sf2";
description = ''
The soundfont file to use, in SoundFont 2 format.
'';
};
extraOptions = mkOption {
type = types.listOf types.str;
default = [ ];
example = [ "--sample-rate 96000" ];
description = ''
Extra arguments, added verbatim to the fluidsynth command. See
<citerefentry>
<refentrytitle>fluidsynth.conf</refentrytitle>
<manvolnum>1</manvolnum>
</citerefentry>.
'';
};
};
};
config = mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "services.fluidsynth" pkgs
lib.platforms.linux)
];
systemd.user.services.fluidsynth = {
Unit = {
Description = "FluidSynth Daemon";
Documentation = "man:fluidsynth(1)";
BindsTo = [ "pulseaudio.service" ];
After = [ "pulseaudio.service" ];
};
Install = { WantedBy = [ "default.target" ]; };
Service = {
ExecStart = "${pkgs.fluidsynth}/bin/fluidsynth -a pulseaudio -si ${
lib.concatStringsSep " " cfg.extraOptions
} ${cfg.soundFont}";
};
};
};
}