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

Add sqlx-cli and mermaid-cli to terminal-utils.nix while removing them from utils.nix to consolidate database and diagramming tools in the appropriate utility category. - Move sqlx-cli (database migrations) to terminal utilities - Move mermaid-cli (diagram generation) to terminal utilities - Remove commented git-secrets from terminal utilities This reorganization groups related development tools together for better maintainability and logical organization of utility packages.
19 lines
211 B
Nix
19 lines
211 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
mold
|
|
gcc
|
|
clang
|
|
lld
|
|
lldb
|
|
musl
|
|
jdk11
|
|
dioxus-cli
|
|
surrealdb
|
|
surrealdb-migrations
|
|
surrealist
|
|
trunk
|
|
];
|
|
}
|