treewide: implement auto importing for modules
Reduce maintenance burden and increase efficiency by automatically importing modules following a specific convention. Co-authored-by: awwpotato <awwpotato@voidq.com> Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
parent
fefeb0e928
commit
4fca600cb1
461 changed files with 72 additions and 474 deletions
52
modules/programs/timidity/default.nix
Normal file
52
modules/programs/timidity/default.nix
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
let
|
||||
|
||||
cfg = config.programs.timidity;
|
||||
|
||||
in
|
||||
{
|
||||
meta.maintainers = [ lib.hm.maintainers.amesgen ];
|
||||
|
||||
options.programs.timidity = {
|
||||
enable = lib.mkEnableOption "timidity, a software MIDI renderer";
|
||||
|
||||
package = lib.mkPackageOption pkgs "timidity" { };
|
||||
|
||||
finalPackage = lib.mkOption {
|
||||
readOnly = true;
|
||||
type = lib.types.package;
|
||||
description = "Resulting package.";
|
||||
};
|
||||
|
||||
extraConfig = lib.mkOption {
|
||||
type = lib.types.lines;
|
||||
default = "";
|
||||
example = lib.literalExpression ''
|
||||
'''
|
||||
soundfont ''${pkgs.soundfont-fluid}/share/soundfonts/FluidR3_GM2-2.sf2
|
||||
'''
|
||||
'';
|
||||
description = "Extra configuration.";
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
home.packages = [ cfg.finalPackage ];
|
||||
|
||||
programs.timidity.finalPackage = pkgs.symlinkJoin {
|
||||
name = "timidity-with-config";
|
||||
paths = [ cfg.package ];
|
||||
nativeBuildInputs = [ pkgs.makeWrapper ];
|
||||
postBuild = ''
|
||||
wrapProgram $out/bin/timidity \
|
||||
--add-flags '-c ${pkgs.writeText "timidity.cfg" cfg.extraConfig}'
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue