style: nix fmt hive-xdg-icons.nix (treefmt)

This commit is contained in:
atlas 2026-07-08 21:03:53 +02:00 committed by mara
commit 39af2bad5d

View file

@ -51,29 +51,29 @@ stdenv.mkDerivation {
# but are still discovered by process-to-icon matchers (GNOME, etc.).
mkdir -p "$out/share/applications"
cat > "$out/share/applications/hive-c0re.desktop" <<EOF
[Desktop Entry]
Type=Application
Name=hyperhive core
GenericName=hive-c0re
Comment=hyperhive host daemon container lifecycle, broker, operator dashboard
Exec=hive-c0re serve
Icon=hyperhive
Categories=System;
NoDisplay=true
StartupNotify=false
EOF
[Desktop Entry]
Type=Application
Name=hyperhive core
GenericName=hive-c0re
Comment=hyperhive host daemon container lifecycle, broker, operator dashboard
Exec=hive-c0re serve
Icon=hyperhive
Categories=System;
NoDisplay=true
StartupNotify=false
EOF
cat > "$out/share/applications/hive-ag3nt.desktop" <<EOF
[Desktop Entry]
Type=Application
Name=hyperhive agent
GenericName=hive-ag3nt
Comment=hyperhive per-agent harness (claude turn loop + MCP server)
Exec=hive serve
Icon=hyperhive
Categories=System;
NoDisplay=true
StartupNotify=false
EOF
[Desktop Entry]
Type=Application
Name=hyperhive agent
GenericName=hive-ag3nt
Comment=hyperhive per-agent harness (claude turn loop + MCP server)
Exec=hive serve
Icon=hyperhive
Categories=System;
NoDisplay=true
StartupNotify=false
EOF
runHook postInstall
'';