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

Changelog: - Added AI tools and services (Ollama, SearXNG, Open WebUI) - Updated README with AI tools section and improved formatting - Added new Rust tools (`cargo-feature`, `cargo-features-manager`) - Improved virtualisation config with `nvidia-docker` - Added new work tools (`ssm-session-manager-plugin`, `redli`) - Updated Helix, Qutebrowser, and Oterm configs - Added Open WebUI and SearXNG config files
33 lines
627 B
Nix
33 lines
627 B
Nix
{ inputs, pkgs, ... }:
|
|
|
|
{
|
|
# Apply the overlay to the package set
|
|
nixpkgs.overlays = [
|
|
inputs.rust-overlay.overlays.default
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
(rust-bin.fromRustupToolchainFile ./rust-toolchain.toml)
|
|
taplo #toml formatter & lsp
|
|
cargo-watch
|
|
cargo-deny
|
|
cargo-audit
|
|
cargo-update
|
|
cargo-edit
|
|
cargo-outdated
|
|
cargo-license
|
|
cargo-tarpaulin
|
|
cargo-cross
|
|
cargo-zigbuild
|
|
cargo-nextest
|
|
cargo-spellcheck
|
|
cargo-modules
|
|
cargo-bloat
|
|
cargo-unused-features
|
|
cargo-feature
|
|
cargo-features-manager
|
|
bacon
|
|
evcxr #rust repl
|
|
];
|
|
}
|