1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
{ pkgs, lib, config, inputs, ... }: { languages.rust = { enable = true; components = [ "rustc" "cargo" "clippy" "rustfmt" "rust-analyzer" ]; }; languages.python = { enable = true; uv = { enable = true; }; }; }