Nix-Vibe public snapshot (squashed history)

This commit is contained in:
2026-09-19 13:54:34 +01:00
commit cff83a473b
118 changed files with 18716 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{ pkgs, ... }:
let
x32editDesktop = pkgs.makeDesktopItem {
name = "X32-Edit";
desktopName = "X32-Edit";
genericName = "Digital Mixer Editor";
exec = "x32-edit";
icon = "audio-mixer"; # Using a generic audio mixer icon as a fallback
categories = [
"AudioVideo"
"Audio"
];
comment = "Editor for the Behringer X32 digital mixer";
};
in
{
environment.systemPackages = [
pkgs.x32edit
x32editDesktop
];
}