feat: add coding packages module (bruno, insomnia)

This commit is contained in:
m3tm3re
2026-04-26 12:29:14 +02:00
parent 8f5d076d7b
commit d19b87f8cd
17 changed files with 790 additions and 1 deletions

View File

@@ -1,10 +1,11 @@
# Coding environment aggregator — profile-independent development tooling.
# Imports editors, LSP servers, git configuration, and the agent system.
# Imports editors, LSP servers, git configuration, the agent system, and optional packages.
{...}: {
imports = [
./editor
./lsp
./git/git.nix
./agents/agents.nix
./packages.nix
];
}

20
home/coding/packages.nix Normal file
View File

@@ -0,0 +1,20 @@
# Additional coding packages — API clients and GUI development tools.
# Opt-in since not all coding hosts need these desktop-oriented tools.
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.coding.packages;
in {
options.coding.packages.enable = mkEnableOption "additional coding packages (bruno, insomnia)";
config = mkIf cfg.enable {
home.packages = [
pkgs.bruno
pkgs.insomnia
];
};
}