mirror of
https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git
synced 2025-09-15 09:45:58 +03:00

Add mermaid-cli to the list of utils packages for diagram generation support. This enables users to create diagrams from markdown without additional configuration.
21 lines
240 B
Nix
21 lines
240 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
mold
|
|
gcc
|
|
clang
|
|
lld
|
|
lldb
|
|
musl
|
|
jdk11
|
|
dioxus-cli
|
|
surrealdb
|
|
surrealdb-migrations
|
|
surrealist
|
|
trunk
|
|
sqlx-cli
|
|
mermaid-cli
|
|
];
|
|
}
|