#──────────────────────────────────────────────────────────────────────────────┐
# SPDX-FileCopyrightText: 2026 toastal <toastal@posteo.net>                    │
# SPDX-License-Identifier: MPL-2.0                                             │
#──────────────────────────────────────────────────────────────────────────────┘
{
	system ? builtins.currentSystem,
	bootstrap-nixpkgs ? null,
}:

let
	inputs = import ./nix/tamal { inherit system bootstrap-nixpkgs; };

	pkgs = import inputs.nixpkgs {
		overlays = [
			(import ./nix/overlay)
			(import ./nix/overlay/development.nix)
		];
	};
in
{
   inherit (pkgs.sugilite256)
      default
      bin
      chroma-css
      prism
      profanity
      pygments
      vim
      zellij
      ;

   shell = pkgs.sugilite256.dev-shell;
}
