nix/modules/nixos/music-production.nix

20 lines
468 B
Nix
Raw Normal View History

2024-05-15 19:29:46 -05:00
{pkgs, ...}: {
# TODO: may want to force nixpkgs-stable for a more-stable music production
# environment?
imports = [
{
environment.systemPackages = with pkgs; [
2024-06-04 12:02:27 -05:00
helvum # pipewire graph/patchbay GUI
ardour # DAW
helm # synth
2024-05-15 19:29:46 -05:00
];
}
];
# TODO: things to look into for music production:
# - https://linuxmusicians.com/viewtopic.php?t=27016
# - KXStudio?
# - falktx (https://github.com/DISTRHO/Cardinal)
# -
}